]> pd.if.org Git - zpackage/commitdiff
add -m option to add to set file mode
authorNathan Wagner <nw@hydaspes.if.org>
Sun, 28 Oct 2018 12:29:24 +0000 (12:29 +0000)
committerNathan Wagner <nw@hydaspes.if.org>
Sat, 3 Nov 2018 12:39:53 +0000 (12:39 +0000)
zpm-add

diff --git a/zpm-add b/zpm-add
index cfce783c2f3cebd10a7066b192fe0a2729f2383f..68c986dbfc05a365a3dadce4c2804296efd683fe 100755 (executable)
--- a/zpm-add
+++ b/zpm-add
@@ -34,6 +34,7 @@ tags=
 isconfig=0
 addcontent=1
 complete=0
+mode=
 # option for "multipackage" just to let the system know that's what you meant
 # option to take filenames from stdin
 # parse package, version, release from file if not given
@@ -48,6 +49,7 @@ while getopts :f:vr:l:P:S:cu:g:NC opt; do
                c) isconfig=1 ;;
                u) username="$OPTARG" ;;
                g) groupname="$OPTARG" ;;
+               m) mode="$OPTARG" ;;
                v) verbose=$((verbose + 1)) ;;
                C) complete=1 ;;
                *) echo 'unknown option' $OPTARG; exit 1 ;;
@@ -118,7 +120,10 @@ for path in $*; do
        mtime=$(zpm stat -f '%y' $path)
        uid=$(zpm stat -f '%u' $path)
        gid=$(zpm stat -f '%g' $path)
-       mode=$(zpm stat -f '%a' $path)
+
+       if [ -z "$mode" ]; then
+               mode=$(zpm stat -f '%a' $path)
+       fi
 
        # only stat the file for the user and group name if not set on the
        # command line