mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-16 03:24:07 +00:00
6aa17e12b7
OpenSER is a scalable and robust SIP server, spawned from FhG FOKUS SIP Express Router (SER). WWW: http://www.openser.org/ PR: ports/88239 Submitted by: jesusr
13 lines
220 B
Bash
13 lines
220 B
Bash
#!/bin/sh
|
|
|
|
[ "$2" != POST-INSTALL ] && exit
|
|
|
|
rc_dir=$PKG_PREFIX/etc/openser
|
|
|
|
for f in %%RC_FILES%%; do
|
|
if ! [ -e $rc_dir/$f ]; then
|
|
/usr/bin/install -o root -g wheel -m 644 \
|
|
$rc_dir/$f.default $rc_dir/$f
|
|
fi
|
|
done
|