Merge pull request #180 from kent1D/patch-2

Avoid a warning if directory exists
This commit is contained in:
Benjamin Sonntag 2017-08-12 16:42:24 +02:00 committed by GitHub
commit 9659823bdf
1 changed files with 3 additions and 1 deletions

View File

@ -9,7 +9,9 @@ if ($argv[1] == "templates") {
// install ssl.conf
echo "[alternc-ssl] Installing ssl.conf template\n";
copy("/etc/alternc/templates/apache2/mods-available/ssl.conf","/etc/apache2/mods-available/ssl.conf");
mkdir("/var/run/alternc-ssl");
if (!is_dir('/var/run/alternc-ssl')) {
mkdir("/var/run/alternc-ssl");
}
chown("/var/run/alternc-ssl","alterncpanel");
chgrp("/var/run/alternc-ssl","alterncpanel");
// replace open_basedir line if necessary :