Browse Source

Merge pull request #7081 from jpartain89/patch-1

Changing the CHMOD to 0750
pull/7128/head
Ruud Burger 9 years ago
committed by Ruud
parent
commit
6fd1b61842
  1. 2
      init/ubuntu

2
init/ubuntu

@ -61,7 +61,7 @@ start_cp() {
# (but refuse to touch any pre-existing ones) # (but refuse to touch any pre-existing ones)
for D in "$(dirname "$CP_PIDFILE")" "$CP_DATA"; do for D in "$(dirname "$CP_PIDFILE")" "$CP_DATA"; do
[ ! -d "$D" ] && { [ ! -d "$D" ] && {
install --directory --owner="$CP_USER" --group=root --mode=0700 "$D" || exit 1; install --directory --owner="$CP_USER" --group=root --mode=0750 "$D" || exit 1;
} }
done done

Loading…
Cancel
Save