Add package repository without components

Based on the page Index of /repo/community/deb/latest I’d like to add the following line in file /etc/apt/sources.list:

deb http://linux.dell.com/repo/community/deb/latest / # dell-omsa #

I’ve added the following configuration:

repository dell-omsa { distribution / url http://linux.dell.com/repo/community/deb/latest }

During commit I’m getting the following error message:

[code][ system package repository dell-omsa ]
Must configure the repository components

[[system package]] failed
Commit failed[/code]

I’ve solved it by adding the component rule with a # so it would be ignored:

set system package repository dell-omsa components "#none"

The configuration result is:

repository dell-omsa { components #none distribution / url http://linux.dell.com/repo/community/deb/latest }

After commit I get in the file /etc/apt/sources.list the following rule added:

deb http://linux.dell.com/repo/community/deb/latest / #none # dell-omsa #

This workaround should survive upgrades.