Ryan Barry has uploaded a new change for review. Change subject: Puppet autoinstall should actually write puppet.conf ......................................................................
Puppet autoinstall should actually write puppet.conf Previously, we forgot to .enable_puppet() after writing the keys. Do so. Change-Id: I72293f54eb7d06a100436d014210cd251de8f074 Bug-Url: https://bugzilla.redhat.com/show_bug.cgi?id=987785 Signed-off-by: Ryan Barry <[email protected]> --- M plugins/puppet_autoinstall.py 1 file changed, 1 insertion(+), 1 deletion(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-node refs/changes/90/22490/1 diff --git a/plugins/puppet_autoinstall.py b/plugins/puppet_autoinstall.py index 6fe4b8a..1853078 100644 --- a/plugins/puppet_autoinstall.py +++ b/plugins/puppet_autoinstall.py @@ -38,4 +38,4 @@ Puppet().update(*effective_model.values_for(real_keys)) if "puppet_enabled" in args and (re.compile(r'y', re.I).match(args[ "puppet_enabled"]) or args["puppet_enabled"] == "1"): - ActivatePuppet() + ActivatePuppet().enable_puppet() -- To view, visit http://gerrit.ovirt.org/22490 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I72293f54eb7d06a100436d014210cd251de8f074 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-node Gerrit-Branch: master Gerrit-Owner: Ryan Barry <[email protected]> _______________________________________________ node-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/node-patches
