-plural (old stuff)

Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
Nico Schottelius 2011-03-15 00:06:50 +01:00
parent 2d4cbdddab
commit fe2d4877ce
1 changed files with 3 additions and 3 deletions

View File

@ -109,15 +109,15 @@ esac
# Mode settings
if [ -f "$__object/parameter/mode" ]; then
echo chmod \"$(cat "$__object/parameters/mode")\" \"$destination\"
echo chmod \"$(cat "$__object/parameter/mode")\" \"$destination\"
fi
# Group
if [ -f "$__object/parameter/group" ]; then
echo chgrp \"$(cat "$__object/parameters/group")\" \"$destination\"
echo chgrp \"$(cat "$__object/parameter/group")\" \"$destination\"
fi
# Owner
if [ -f "$__object/parameter/owner" ]; then
echo chown \"$(cat "$__object/parameters/owner")\" \"$destination\"
echo chown \"$(cat "$__object/parameter/owner")\" \"$destination\"
fi