diff options
Diffstat (limited to 'vendor/supply_drop')
-rw-r--r-- | vendor/supply_drop/lib/supply_drop/plugin.rb | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/vendor/supply_drop/lib/supply_drop/plugin.rb b/vendor/supply_drop/lib/supply_drop/plugin.rb index 348b22b..1784d59 100644 --- a/vendor/supply_drop/lib/supply_drop/plugin.rb +++ b/vendor/supply_drop/lib/supply_drop/plugin.rb @@ -20,8 +20,8 @@ module SupplyDrop end def prepare - run "mkdir -p #{puppet_destination}" - run "#{sudo} chown -R $USER: #{puppet_destination}" + #run "mkdir -p #{puppet_destination}" + #run "#{sudo} chown -R $USER: #{puppet_destination}" end def noop @@ -34,7 +34,7 @@ module SupplyDrop def lock if should_lock? - run <<-GETLOCK + cmd = <<-GETLOCK if [ ! -f #{puppet_lock_file} ]; then touch #{puppet_lock_file}; else @@ -42,11 +42,12 @@ else exit 1; fi GETLOCK + run cmd.gsub(/\s+/, ' ') end end def unlock - run "#{sudo} rm -f #{puppet_lock_file}; true" if should_lock? + run "rm -f #{puppet_lock_file}; true" if should_lock? end private |