mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-18 11:10:04 +00:00
10 lines
325 B
Bash
10 lines
325 B
Bash
#!/bin/sh
|
|
#Store backup for old config files to prevent it from being overwritten
|
|
if [ -f /etc/sunshine/sunshine.conf ]; then
|
|
cp /etc/sunshine/sunshine.conf /etc/sunshine/sunshine.conf.old
|
|
fi
|
|
|
|
if [ -f /etc/sunshine/apps_linux.json ]; then
|
|
cp /etc/sunshine/apps_linux.json /etc/sunshine/apps_linux.json.old
|
|
fi
|