mirror of
https://github.com/outbackdingo/ports.git
synced 2026-01-27 10:20:12 +00:00
5 lines
178 B
Bash
5 lines
178 B
Bash
#!/bin/sh
|
|
|
|
getent group apache >/dev/null || groupadd -g 25 apache
|
|
getent passwd apache >/dev/null || useradd -c "Apache Server" -d /srv/www -g apache -s /bin/false -u 25 apache
|