Explorar el Código

provision.pl - fixed permissions on installation directory

tags/release-00
gashapwn hace 3 años
padre
commit
65038fe603
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      perl-script/provision.pl

+ 2
- 1
perl-script/provision.pl Ver fichero

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


Cargando…
Cancelar
Guardar