소스 검색

provision.pl - fixed permissions on installation directory

tags/release-00
gashapwn 3 년 전
부모
커밋
65038fe603
1개의 변경된 파일2개의 추가작업 그리고 1개의 파일을 삭제
  1. +2
    -1
      perl-script/provision.pl

+ 2
- 1
perl-script/provision.pl 파일 보기

@@ -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


불러오는 중...
취소
저장