diff options
author | elijah <elijah@riseup.net> | 2013-07-10 22:03:30 -0700 |
---|---|---|
committer | elijah <elijah@riseup.net> | 2013-07-10 22:03:30 -0700 |
commit | eec3e1760cec10cdd508771ddb71efeff04cfff8 (patch) | |
tree | 4ebdca229c0f27e80bf2cbe5e2bdaad7b5c76dda /lib/leap_cli/remote | |
parent | df68d335c9c6fa8fd1638fb023b55f0993e43fe4 (diff) |
file permissions -- no longer force restrictive chmod on the rsync of /srv/leap/[puppet|bin], because doing so messes up the permissions of /srv/leap.
Diffstat (limited to 'lib/leap_cli/remote')
-rw-r--r-- | lib/leap_cli/remote/rsync_plugin.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/leap_cli/remote/rsync_plugin.rb b/lib/leap_cli/remote/rsync_plugin.rb index 495ca1d..48f82d3 100644 --- a/lib/leap_cli/remote/rsync_plugin.rb +++ b/lib/leap_cli/remote/rsync_plugin.rb @@ -14,7 +14,7 @@ module LeapCli; module Remote; module RsyncPlugin # {:source => '', :dest => '', :flags => '', :includes => [], :excludes => []} # def update - rsync = RsyncCommand.new(:logger => logger, :flags => '-rltp --chmod=u+rX,go-rwx') + rsync = RsyncCommand.new(:logger => logger) rsync.asynchronously(find_servers) do |server| options = yield server next unless options |