aboutsummaryrefslogtreecommitdiffstats
path: root/tools/install.sh
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2024-10-09 14:28:36 +0000
committerLaurent Bercot <ska@appnovation.com>2024-10-09 14:28:36 +0000
commit59bf5341790b98413caf9fdd6c99a760bebc075d (patch)
tree5f82b27bd6ad5b5df07157d119623b060cae387c /tools/install.sh
parent69f6e33e931e0302c94ceea83c691644d64a943d (diff)
downloads6-linux-init-59bf5341790b98413caf9fdd6c99a760bebc075d.tar.gz
version: 1.1.2.1v1.1.2.1
Signed-off-by: Laurent Bercot <ska@appnovation.com>
Diffstat (limited to 'tools/install.sh')
-rwxr-xr-xtools/install.sh11
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"