Method: DockerSync::SyncStrategy::Rsync#get_group_mapping
- Defined in:
- lib/docker-sync/sync_strategy/rsync.rb
#get_group_mapping ⇒ Object
147 148 149 150 151 152 153 154 |
# File 'lib/docker-sync/sync_strategy/rsync.rb', line 147 def get_group_mapping group_mapping = '' if @options.key?('sync_groupid') raise 'for now, rsync does no longer support groupid, but for nearly all cases sync_userid should be enough' #group_mapping = "#{group_mapping} -e GROUP_ID=#{@options['sync_groupid']}" end return group_mapping end |