mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-07-28 07:36:44 +00:00
9 lines
244 B
Bash
9 lines
244 B
Bash
#!/bin/sh
|
|
set -e
|
|
|
|
PKG="bor"
|
|
|
|
if ! getent passwd $PKG >/dev/null ; then
|
|
adduser --disabled-password --disabled-login --shell /usr/sbin/nologin --quiet --system --no-create-home --home /nonexistent $PKG
|
|
echo "Created system user $PKG"
|
|
fi
|