diff options
author | Laurent Bercot <ska-skaware@skarnet.org> | 2023-12-21 10:48:41 +0000 |
---|---|---|
committer | Laurent Bercot <ska@appnovation.com> | 2023-12-21 10:48:41 +0000 |
commit | 9abf2cba718f765c0fc856267f1140723ee003f1 (patch) | |
tree | d6ccad7170a3f603d1a363e0ce744748f6a639fe /tools | |
parent | f23dd23af88f8ec77b7d2bc075cbaee964fcc55b (diff) | |
download | s6-networking-2db50db86f01fddae54f2fdaba71f91a258f3c3a.tar.xz |
version: 2.7.0.1v2.7.0.1
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'tools')
-rwxr-xr-x | tools/install.sh | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/tools/install.sh b/tools/install.sh index 89f9428..e96dd7b 100755 --- a/tools/install.sh +++ b/tools/install.sh @@ -1,19 +1,21 @@ #!/bin/sh usage() { - echo "usage: $0 [-D] [-l] [-m mode] src dst" 1>&2 + echo "usage: $0 [ -D ] [ -l ] [ -m mode ] [ -O owner:group ] src dst" 1>&2 exit 1 } mkdirp=false symlink=false mode=0755 +og= -while getopts Dlm: name ; do +while getopts Dlm:O: name ; do case "$name" in D) mkdirp=true ;; l) symlink=true ;; m) mode=$OPTARG ;; + O) og=$OPTARG ;; ?) usage ;; esac done @@ -46,7 +48,10 @@ if $symlink ; then ln -s "$src" "$tmp" else cat < "$1" > "$tmp" - chmod "$mode" "$tmp" + if test -n "$og" ; then + chown -- "$og" "$tmp" + fi + chmod -- "$mode" "$tmp" fi mv -f "$tmp" "$dst" |