mirror of
https://github.com/LizardByte/Sunshine.git
synced 2024-11-19 05:11:53 +00:00
10 lines
385 B
Plaintext
10 lines
385 B
Plaintext
|
#!/bin/sh
|
||
|
#Store backup for old config files to prevent it from being overwritten
|
||
|
if [ -f /usr/local/sunshine/config/sunshine.conf ]; then
|
||
|
cp /usr/local/sunshine/config/sunshine.conf /usr/local/sunshine/config/sunshine.conf.old
|
||
|
fi
|
||
|
|
||
|
if [ -f /usr/local/sunshine/config/apps.json ]; then
|
||
|
cp /usr/local/sunshine/config/apps.json /usr/local/sunshine/config/apps.json.old
|
||
|
fi
|