mirror of
https://github.com/pomerium/pomerium.git
synced 2025-04-29 10:26:29 +02:00
5 lines
113 B
Bash
Executable file
5 lines
113 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if ! getent passwd pomerium >/dev/null; then
|
|
useradd --system -d / -s /sbin/nologin pomerium
|
|
fi
|