mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-04 02:39:56 +00:00
9 lines
248 B
Plaintext
9 lines
248 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Ensure Sunshine can grab images from KMS
|
||
|
path_to_setcap=$(which setcap)
|
||
|
if [ -x "$path_to_setcap" ] ; then
|
||
|
echo "$path_to_setcap cap_sys_admin+p /usr/bin/sunshine"
|
||
|
$path_to_setcap cap_sys_admin+p $(readlink -f /usr/bin/sunshine)
|
||
|
fi
|