blob: 9a297422e855374624cf1024aa0f712ea37dd12c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
post_install ()
{
echo "Create configuration file /etc/freediameter/freediameter.conf before first start"
echo "For sample configuration files, see /etc/freediameter/samples/"
echo "Systemd service file is at /usr/lib/systemd/system/freediameter.service"
}
post_upgrade ()
{
echo "WARNING: Some changes were made."
echo "Configuration path changed and SysVinit support was dropped, systemd support added."
echo ""
post_install
}
|