diff options
author | Micah Anderson <micah@riseup.net> | 2013-01-31 13:13:59 -0500 |
---|---|---|
committer | Micah Anderson <micah@riseup.net> | 2013-01-31 13:13:59 -0500 |
commit | 1c58ef79e3f2933a03fdb7397153a0493e19ba17 (patch) | |
tree | a0685ffb18baaf100631b93d4c7a646a22e9a97e /lib | |
parent | 8e20cc0da9690293f49aa0bee6475a692e0482ed (diff) | |
download | leap_cli-1c58ef79e3f2933a03fdb7397153a0493e19ba17.tar.gz leap_cli-1c58ef79e3f2933a03fdb7397153a0493e19ba17.tar.bz2 |
fix erroneous space between tags (#1571)
Diffstat (limited to 'lib')
-rw-r--r-- | lib/leap_cli/commands/deploy.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/commands/deploy.rb b/lib/leap_cli/commands/deploy.rb index ebd8909..e7dffef 100644 --- a/lib/leap_cli/commands/deploy.rb +++ b/lib/leap_cli/commands/deploy.rb @@ -35,7 +35,7 @@ module LeapCli ssh.set :puppet_destination, '/srv/leap' tags = ['leap_base'] tags << 'leap_slow' unless options[:fast] - ssh.set :puppet_command, "/usr/bin/puppet apply --color=false --tags=#{tags.join(', ')}" + ssh.set :puppet_command, "/usr/bin/puppet apply --color=false --tags=#{tags.join(',')}" ssh.set :puppet_lib, "puppet/modules" ssh.set :puppet_parameters, '--libdir puppet/lib --confdir puppet puppet/manifests/site.pp' ssh.set :puppet_stream_output, true |