nginx-koskur

This commit is contained in:
milisbir 2017-07-21 19:10:17 +03:00
parent 0c8242e3af
commit fa4c7534dc
1 changed files with 11 additions and 0 deletions

View File

@ -1,3 +1,5 @@
#!/bin/sh
id www 2>/dev/null
if [ $? -eq 0 ]; then
echo "www kullanicisi zaten tanimli"
@ -5,3 +7,12 @@ else
echo "www kullanicisi olusturuldu"
useradd -M -s /bin/false -c "www user" www
fi
if [ -z "`getent group nginx`" ]; then
/sbin/groupadd --system nginx
fi
if [ -z "`getent passwd nginx`" ]; then
/sbin/useradd -r -g nginx -d /etc/nginx -s /bin/false -c "nginx server" nginx
/bin/passwd -l nginx
fi