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