14 lines
150 B
Plaintext
14 lines
150 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -eu
|
||
|
|
||
|
USER="nomad"
|
||
|
|
||
|
if ! id -u $USER >/dev/null 2>&1; then
|
||
|
useradd \
|
||
|
--system \
|
||
|
--user-group \
|
||
|
--shell /bin/false \
|
||
|
$USER
|
||
|
fi
|