mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2026-01-04 00:02:17 +01: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
|