about summary refs log tree commit diff
diff options
context:
space:
mode:
authorLaurent Bercot <ska-skaware@skarnet.org>2024-10-09 14:25:20 +0000
committerLaurent Bercot <ska@appnovation.com>2024-10-09 14:25:20 +0000
commitab2191115e8417de0837866d5e11bed8f3b2bd0b (patch)
treec10283767cf25929045f16a18c735737eed93c93
parent41a1292705efee96f8b9e9b1c4a3c4eaff757a66 (diff)
downloadpamela-ab2191115e8417de0837866d5e11bed8f3b2bd0b.tar.gz
pamela-ab2191115e8417de0837866d5e11bed8f3b2bd0b.tar.xz
pamela-ab2191115e8417de0837866d5e11bed8f3b2bd0b.zip
Update tools main
Signed-off-by: Laurent Bercot <ska@appnovation.com>
-rwxr-xr-xpatch-for-solaris2
-rwxr-xr-xtools/install.sh11
2 files changed, 9 insertions, 4 deletions
diff --git a/patch-for-solaris b/patch-for-solaris
index 2d1296b..ccb17f7 100755
--- a/patch-for-solaris
+++ b/patch-for-solaris
@@ -1,4 +1,4 @@
-#!/usr/xpg4/bin/sh
+#!/usr/xpg4/bin/sh -e
 
 patchit () {
   echo '#!/usr/xpg4/bin/sh' > $1.tmp
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"