mirror of
https://github.com/thinkonmay/sunshine-sdk.git
synced 2026-02-01 17:49:48 +00:00
7 lines
134 B
Plaintext
7 lines
134 B
Plaintext
post_install() {
|
|
if ! getent group input > /dev/null; then
|
|
echo "Creating group input"
|
|
groupadd -r input
|
|
fi
|
|
}
|