revert config and add repo name check

This commit is contained in:
Louis Abel 2022-07-06 23:56:19 -07:00
parent e9e37384ae
commit 8f9f2646b7
Signed by: label
GPG Key ID: B37E62D143879B36
1 changed files with 7 additions and 1 deletions

View File

@ -100,6 +100,12 @@ class RepoSync:
self.gpgkey = gpgkey
self.checksum = rlvars['checksum']
# The repo name should be valid
if self.repo is not None:
if self.repo not in self.repos:
self.log.error(Color.FAIL + 'Invalid repository: ' + self.repo)
raise SystemExit()
self.compose_id = '{}-{}-{}'.format(
config['shortname'],
rlvars['revision'],
@ -661,7 +667,7 @@ class RepoSync:
"""
fname = os.path.join(
dest_path,
"{}-config.repo".format(self.major_version)
"{}-{}-config.repo".format(self.shortname, self.major_version)
)
self.log.info('Generating the repo configuration: %s' % fname)