Remove setup of 'input' group from Linux packaging scripts

This commit is contained in:
kodemeister 2023-04-02 03:48:24 +06:00 committed by Cameron Gutman
commit 5d3034701d
4 changed files with 4 additions and 17 deletions

View file

@ -1,17 +1,5 @@
#!/bin/sh
export GROUP_INPUT=input
if [ -f /etc/group ]; then
if ! grep -q $GROUP_INPUT /etc/group; then
echo "Creating group $GROUP_INPUT"
groupadd $GROUP_INPUT
fi
else
echo "Warning: /etc/group not found"
fi
# Ensure Sunshine can grab images from KMS
path_to_setcap=$(which setcap)
if [ -x "$path_to_setcap" ] ; then