Fix a minor shell issue with the Puppet livery.

This will fail trying to chmod the entire puppet command string

    chmod: unrecognized option '--modulepath=./modules'
    Try `chmod --help' for more information.
This commit is contained in:
R. Tyler Croy 2012-12-18 21:38:33 -08:00
parent fe2d2856df
commit 420b878f8b
2 changed files with 2 additions and 2 deletions

View File

@ -44,7 +44,7 @@ module Blimpy
run_sudo = ''
run_sudo = 'sudo' if use_sudo?(box)
box.ssh_into("cd #{dir_name} && chmod 755 ./gempath.sh #{command} && #{run_sudo} ./gempath.sh #{command}")
box.ssh_into("cd #{dir_name} && chmod 755 ./gempath.sh && #{run_sudo} ./gempath.sh #{command}")
end
def postflight(box)

View File

@ -1,3 +1,3 @@
module Blimpy
VERSION = "0.6.5"
VERSION = "0.6.6"
end