mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
12 lines
250 B
Bash
12 lines
250 B
Bash
#!/bin/sh
|
|
|
|
olddir=/usr/share/freeswitch/scripts
|
|
if [ -d "$olddir" ] && ! [ -d /etc/freeswitch/scripts ]; then
|
|
echo "NOTE: Moving scripts to /etc/freeswitch/scripts"
|
|
mkdir -p /etc/freeswitch
|
|
mv "$olddir" /etc/freeswitch
|
|
fi
|
|
|
|
# ignore errors
|
|
exit 0
|