mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-12-25 03:12:08 +01:00
7 lines
148 B
Bash
7 lines
148 B
Bash
#!/bin/sh
|
|
|
|
# move config file from the pre-3.0.0 location
|
|
if [ -f /etc/conf.d/tiny-cloud ]; then
|
|
mv /etc/conf.d/tiny-cloud /etc/tiny-cloud.conf
|
|
fi
|