From 3ea7ae75d1bdc9e03c33894b1fded696cd2ac7d5 Mon Sep 17 00:00:00 2001 From: David Kebler Date: Sun, 19 Mar 2023 11:32:51 -0700 Subject: [PATCH] remove -C from install for compatibility with alpine busybox version --- install/scripts/copy-user.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install/scripts/copy-user.sh b/install/scripts/copy-user.sh index f6d0d4a..f8b874b 100755 --- a/install/scripts/copy-user.sh +++ b/install/scripts/copy-user.sh @@ -19,7 +19,7 @@ user_home=$( getent passwd $user | cut -d: -f6 ) echo -e "*********** copying UCI BASH Shell .profile and bash_profile and .bashrc for user: $user *******" files=$(find $install_dir/files/user -type f) for file in $files; do -install -C -m 660 -o $user -g ${2:-$user} $file $user_home +install -m 660 -o $user -g ${2:-$user} $file $user_home done if [[ ! subdir == "shell" ]]; then