mirror of
https://github.com/binwiederhier/ntfy.git
synced 2024-10-31 17:11:13 +01:00
11 lines
325 B
Bash
Executable file
11 lines
325 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
|
|
if [ "$1" = "install" ] || [ "$1" = "upgrade" ] || [ "$1" -ge 1 ]; then
|
|
# Migration of old to new config file name
|
|
oldconfigfile="/etc/ntfy/config.yml"
|
|
configfile="/etc/ntfy/server.yml"
|
|
if [ -f "$oldconfigfile" ] && [ ! -f "$configfile" ]; then
|
|
mv "$oldconfigfile" "$configfile" || true
|
|
fi
|
|
fi
|