Browse Source

provision.pl - fixed permissions on installation directory

tags/release-00
gashapwn 3 years ago
parent
commit
65038fe603
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      perl-script/provision.pl

+ 2
- 1
perl-script/provision.pl View File

@@ -48,7 +48,8 @@ system("pkg_add git");

# Setup install dir
system("mkdir $INST_DIR");
system("useradd -d /tilde -r 100..900 $SVC_ACCT");
system("useradd -d $INST_DIR -r 100..900 $SVC_ACCT");
system("chown $SVC_ACCT:$SVC_ACCT $INST_DIR");
chdir $INST_DIR;

# clone repo


Loading…
Cancel
Save