mirror of
https://github.com/LizardByte/Sunshine.git
synced 2025-01-01 12:03:09 +00:00
9 lines
248 B
Bash
9 lines
248 B
Bash
#!/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
|