Skip to content

Commit

Permalink
Add support for debian repository creation
Browse files Browse the repository at this point in the history
  • Loading branch information
dosas authored and ogajduse committed Aug 16, 2024
1 parent 7f7053e commit fb1370d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion nailgun/entities.py
Original file line number Diff line number Diff line change
Expand Up @@ -6856,7 +6856,7 @@ def __init__(self, server_config=None, **kwargs):
),
'content_counts': entity_fields.DictField(),
'content_type': entity_fields.StringField(
choices=('puppet', 'yum', 'file', 'docker', 'ostree'),
choices=('puppet', 'yum', 'file', 'docker', 'ostree', 'deb'),
default='yum',
required=True,
),
Expand Down Expand Up @@ -6898,12 +6898,17 @@ def __init__(self, server_config=None, **kwargs):
choices=('global_default_http_proxy', 'none', 'use_selected_http_proxy')
),
'http_proxy_id': entity_fields.IntegerField(),
'deb_releases': entity_fields.StringField(),
'deb_components': entity_fields.StringField(),
'deb_architectures': entity_fields.StringField(),
}
if self._fields['content_type'].choices == 'yum':
self._fields['download_policy'].required = True
self._meta = {
'api_path': 'katello/api/v2/repositories',
}
if kwargs.get('content_type') == 'deb':
self._fields['deb_releases'].default = 'stable'
super().__init__(server_config=server_config, **kwargs)

def path(self, which=None):
Expand Down

0 comments on commit fb1370d

Please sign in to comment.