blob: 022d52fe86fb90988341b1ec0cc5a4a5d4e1f9b4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- ext/ezbake-functions.sh.orig 2019-02-08 21:16:18.212575000 -0800
+++ ext/ezbake-functions.sh 2019-02-08 21:16:49.208798000 -0800
@@ -126,7 +126,7 @@
local group="${GROUP:-puppet}"
if [ ! -e "$restartfile" ]; then
- /usr/bin/install --directory --owner=$user --group=$group --mode=755 "$restart_file_base_dir"
+ /usr/bin/install -d -o $user -g $group -m 755 "$restart_file_base_dir"
if [ $? -ne 0 ]; then
echo "Unable to create or set permissions for restart file at ${restart_file_base_dir}" 1>&2
return 1
|