- Remove `appveyor.yml` - Add project description to CMakeLists.txt - Add project homepage url to CMakeLists.txt
9 lines
307 B
Bash
9 lines
307 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.json ]; then
|
|
cp /etc/sunshine/apps.json /etc/sunshine/apps.json.old
|
|
fi
|