8 lines
191 B
Bash
Executable file
8 lines
191 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
pw useradd -n _portzap \
|
|
-c "portzap user" \
|
|
-m \
|
|
-M "u=rwx,g=rwx,o=" \
|
|
-s /sbin/nologin
|
|
echo "/home/_portzap/ has been created."
|