6 lines
131 B
Bash
6 lines
131 B
Bash
#!/bin/bash
|
|
|
|
getent group nut || groupadd nut
|
|
getent passwd nut || useradd -m -g nut -d /var/empty -s /bin/false nut
|
|
passwd -l nut
|