from ..errors import ExpectedCobblerError
from ..xlate import XLATOR
-__version__ = '0.2.0'
+__version__ = '0.2.1'
LOG = logging.getLogger(__name__)
ks_meta_list.append("SYSTEM_STATUS={}".format(status))
ks_meta_list.append("WS_REL_FILESDIR={}".format(self.cfg.cobbler_ws_rel_filesdir))
ks_meta_list.append("COBBLER_URL=http://{}".format(self.cfg.cobbler_host))
- ks_meta_list.append("RHEL9_REPOSERVER_URL={}".format(self.cfg.rhel9_repo_server_url)
+ if self.current_distro.is_rhel:
+ ks_meta_list.append("RHEL9_REPOSERVER_URL={}".format(self.cfg.rhel9_repo_server_url)
ks_meta = ' '.join(ks_meta_list)
LOG.debug(_('Profile ks_meta {!r} is not ok.').format('COBBLER_URL'))
ks_meta_ok = False
- if 'RHEL9_REPOSERVER_URL' not in ks_meta_vars or \
- ks_meta_vars['RHEL9_REPOSERVER_URL'] != self.cfg.rhel9_repo_server_url:
- LOG.debug(_('Profile ks_meta {!r} is not ok.').format('RHEL9_REPOSERVER_URL'))
- ks_meta_ok = False
+ if self.current_distro.is_rhel:
+ if 'RHEL9_REPOSERVER_URL' not in ks_meta_vars or \
+ ks_meta_vars['RHEL9_REPOSERVER_URL'] != self.cfg.rhel9_repo_server_url:
+ LOG.debug(_('Profile ks_meta {!r} is not ok.').format('RHEL9_REPOSERVER_URL'))
+ ks_meta_ok = False
return ks_meta_ok
ks_meta_list.append("SYSTEM_STATUS={}".format(status))
ks_meta_list.append("WS_REL_FILESDIR={}".format(self.cfg.cobbler_ws_rel_filesdir))
ks_meta_list.append("COBBLER_URL=http://{}".format(self.cfg.cobbler_host))
- ks_meta_list.append("RHEL9_REPOSERVER_URL={}".format(self.cfg.rhel9_repo_server_url)
+ if self.current_distro.is_rhel:
+ ks_meta_list.append("RHEL9_REPOSERVER_URL={}".format(self.cfg.rhel9_repo_server_url)
ks_meta = None
if ks_meta_list: