mirror of
https://github.com/status-im/consul.git
synced 2025-02-08 20:05:09 +00:00
6c0008913a
Copied from hashicorp/linux-packaging
24e7e2675b
Signed-off-by: Scott Macfarlane <smacfarlane@hashicorp.com>
15 lines
153 B
Bash
15 lines
153 B
Bash
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
USER="consul"
|
|
|
|
if ! id -u $USER > /dev/null 2>&1; then
|
|
useradd \
|
|
--system \
|
|
--user-group \
|
|
--shell /bin/false \
|
|
$USER
|
|
fi
|
|
|