From 02289d0b10f09c2fe8ca4b531b522ee9a611d09d Mon Sep 17 00:00:00 2001 From: dosas Date: Wed, 14 Aug 2024 11:36:22 +0200 Subject: [PATCH] Add repo_data option to host registration command https://github.com/theforeman/foreman/pull/10162 --- nailgun/entities.py | 1 + 1 file changed, 1 insertion(+) diff --git a/nailgun/entities.py b/nailgun/entities.py index 3f29b28f..436b55bd 100644 --- a/nailgun/entities.py +++ b/nailgun/entities.py @@ -6815,6 +6815,7 @@ def __init__(self, server_config=None, **kwargs): 'update_packages': entity_fields.BooleanField(default=False), 'force': entity_fields.BooleanField(default=False), 'ignore_subman_errors': entity_fields.BooleanField(default=False), + 'repo_data': entity_fields.ListField(), } self._meta = {'api_path': '/api/registration_commands'}