By default, the remote services list is stored in the /etc/zypp/services.d directory in standard INI files. Each file can contain more than one service.
The format is the following:
[servicealias] name=My Service url=http://customers.maintenance.company.com/service enabled=true autorefresh=true type=nu
The type "nu" stands for Novell Update, which gives a customer the repositories it is entitled to access. The type "ris" is an extended version of the "nu" type. Additionally, the file could contain "repostoenable" and "repostodisable" entries, which contain a list of repository aliases to enable or disable on the next refresh. This line is modified by other programs to force enabling or disabling a certain repository.
From the remote side, the service url needs to provide a repoindex.xml file with the repository list:
<repoindex> <repo url="http://foo.com/repo1" alias="a repository 1"/> <repo url="http://foo.com/repo2" alias="a repository 2"/> ... </repoindex>
zypper refs
The repositories that are listed in the service will be added, using the reposotiy alias specified in the service index prefixed by the service alias: e.g. "myservice:myrepository". Repositories that vanished from the service will be automatically removed.
The build service provides a KDE4 repository. Which in turn requires the Qt4 repository, because is built on openSUSE 11.0 + the new Qt4 repo.
When looking at this problem, repository dependencies is what comes to head in the first place. But forget about them. If package dependencies are complicated right now, imagine adding a secondary (and duplicated) layer of information. Packages already know their dependencies.
Now imagine our KDE guys can provide an URL, which you add to zypper. And this url returns a dynamic list of repositories. And zypper adds and remove repositories based on the information returned by this url on every refresh.
The service url nu.novell.com is added to the system. But in this url also a customer id is present as a http username. When you registered, Novell knows the product this customer is linked to, and can return a dynamic list of update repositories based on the customer preferences, products and entitlements and the customer does not need to keep them in sync.
Now that we don’t have Zenworks in the base system, we still want this cool functionality for our customers.
Technically, this even allows us to offer hotfixes to L3 supported customers on the fly!
Or what if the build service could offer a service based on keywords or other data: like http://build.opensuse.org/services/mostpopular/repo/repoindex.xml would contain dynamically the 15 most popular repositories. You add that service, and then ZYpp does the work for you of adding new popular repositories, and remove the old ones.