Fix syntax in setup_cosmos_modules
This commit is contained in:
parent
b9fcddb344
commit
bb391413a8
1 changed files with 5 additions and 5 deletions
|
@ -98,31 +98,31 @@ def main():
|
||||||
"upgrade": "yes",
|
"upgrade": "yes",
|
||||||
"tag": "sunet-2*",
|
"tag": "sunet-2*",
|
||||||
}
|
}
|
||||||
modules.update[augeas_module]
|
modules.update(augeas_module)
|
||||||
apt_module = {
|
apt_module = {
|
||||||
"repo": "https://github.com/SUNET/puppetlabs-apt.git",
|
"repo": "https://github.com/SUNET/puppetlabs-apt.git",
|
||||||
"upgrade": "yes",
|
"upgrade": "yes",
|
||||||
"tag": "sunet-2*",
|
"tag": "sunet-2*",
|
||||||
}
|
}
|
||||||
modules.update[apt_module]
|
modules.update(apt_module)
|
||||||
concat_module = {
|
concat_module = {
|
||||||
"repo": "https://github.com/SUNET/puppetlabs-concat.git",
|
"repo": "https://github.com/SUNET/puppetlabs-concat.git",
|
||||||
"upgrade": "yes",
|
"upgrade": "yes",
|
||||||
"tag": "sunet-2*",
|
"tag": "sunet-2*",
|
||||||
}
|
}
|
||||||
modules.update[concat_module]
|
modules.update(concat_module)
|
||||||
stdlib_module = {
|
stdlib_module = {
|
||||||
"repo": "https://github.com/SUNET/puppetlabs-stdlib.git",
|
"repo": "https://github.com/SUNET/puppetlabs-stdlib.git",
|
||||||
"upgrade": "yes",
|
"upgrade": "yes",
|
||||||
"tag": "sunet-2*",
|
"tag": "sunet-2*",
|
||||||
}
|
}
|
||||||
modules.update[stdlib_module]
|
modules.update(stdlib_module)
|
||||||
vcsrepo_module = {
|
vcsrepo_module = {
|
||||||
"repo": "https://github.com/SUNET/puppetlabs-vcsrepo.git",
|
"repo": "https://github.com/SUNET/puppetlabs-vcsrepo.git",
|
||||||
"upgrade": "yes",
|
"upgrade": "yes",
|
||||||
"tag": "sunet-2*",
|
"tag": "sunet-2*",
|
||||||
}
|
}
|
||||||
modules.update[vcsrepo_module]
|
modules.update(vcsrepo_module)
|
||||||
|
|
||||||
# Make test machines use special test branch of puppet-sunet:
|
# Make test machines use special test branch of puppet-sunet:
|
||||||
if OS_INFO["ID"] == "ubuntu":
|
if OS_INFO["ID"] == "ubuntu":
|
||||||
|
|
Loading…
Add table
Reference in a new issue