Skip to content
Snippets Groups Projects
Commit ee574781 authored by Jiri Slachta's avatar Jiri Slachta
Browse files

asterisk11-gui: remove postinst leftovers


Signed-off-by: default avatarJiri Slachta <slachta@cesnet.cz>
parent 03055ba6
No related branches found
No related tags found
No related merge requests found
#!/bin/sh
CFG_PATH="/etc/asterisk/"
GUI_CFG_PREFIX="gui_"
CFG_FILES="http.conf manager.conf users.conf"
for i in $CFG_FILES; do
if [ -f $CFG_PATH$i ]; then
mv $CFG_PATH$i $CFG_PATH$i".backup"
fi
cp $CFG_PATH$GUI_CFG_PREFIX$i $CFG_PATH$i
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment