Skip to content

Commit

Permalink
pkg/kamailio/OBS: Added RPM packaging scripts for openSUSE Build Service
Browse files Browse the repository at this point in the history
(cherry picked from commit 2406f79)
  • Loading branch information
sergey-safarov authored and miconda committed Sep 4, 2017
1 parent 39b9a1e commit 0e20114
Show file tree
Hide file tree
Showing 7 changed files with 1,982 additions and 0 deletions.
6 changes: 6 additions & 0 deletions pkg/kamailio/obs/README
@@ -0,0 +1,6 @@
This is RPM packaging scripts for openSUSE Build Service https://build.opensuse.org/
Scitps build RPM pckages for following dists:
1) CentOS 6 and 7
2) RHEL 6 and 7
3) Fedora 25 adn 26
4) openSUSE 42.2 and 42.3
141 changes: 141 additions & 0 deletions pkg/kamailio/obs/kamailio.init
@@ -0,0 +1,141 @@
#!/bin/bash
#
# Startup script for Kamailio
#
# chkconfig: 345 85 15
# description: Kamailio (OpenSER) - the Open Source SIP Server
#
# processname: kamailio
# pidfile: /var/run/kamailio.pid
# config: /etc/kamailio/kamailio.cfg
#
### BEGIN INIT INFO
# Provides: kamailio
# Required-Start: $local_fs $network
# Short-Description: Kamailio (OpenSER) - the Open Source SIP Server
# Description: Kamailio (former OpenSER) is an Open Source SIP Server released
# under GPL, able to handle thousands of call setups per second.
### END INIT INFO

# Source function library.
. /etc/rc.d/init.d/functions

KAM=/usr/sbin/kamailio
KAMCFG=/etc/kamailio/kamailio.cfg
PROG=kamailio
HOMEDIR=/var/run/$PROG
PID_FILE=/var/run/$PROG/kamailio.pid
LOCK_FILE=/var/lock/subsys/kamailio
RETVAL=0
DEFAULTS=/etc/sysconfig/kamailio
RUN_KAMAILIO=no


# Do not start kamailio if fork=no is set in the config file
# otherwise the boot process will just stop
check_fork ()
{
if grep -q "^[[:space:]]*fork[[:space:]]*=[[:space:]]*no.*" $KAMCFG; then
echo "Not starting $DESC: fork=no specified in config file; run /etc/init.d/kamailio debug instead"
exit 1
fi
}

check_kamailio_config ()
{
# Check if kamailio configuration is valid before starting the server
out=$($KAM -c 2>&1 > /dev/null)
retcode=$?
if [ "$retcode" != '0' ]; then
echo "Not starting $DESC: invalid configuration file!"
echo -e "\n$out\n"
exit 1
fi
}


start() {
check_kamailio_config
if [ "$1" != "debug" ]; then
check_fork
fi
echo -n $"Starting $PROG: "
daemon $KAM $OPTIONS >/dev/null 2>/dev/null
RETVAL=$?
[ $RETVAL = 0 ] && touch $LOCK_FILE && success
echo
return $RETVAL
}

stop() {
echo -n $"Stopping $PROG: "
killproc $KAM
RETVAL=$?
echo
[ $RETVAL = 0 ] && rm -f $LOCK_FILE $PID_FILE
}

# Load startup options if available
if [ -f $DEFAULTS ]; then
. $DEFAULTS || true
fi

if [ "$RUN_KAMAILIO" != "yes" ]; then
echo "Kamailio not yet configured. Edit /etc/default/kamailio first."
exit 0
fi


SHM_MEMORY=$((`echo $SHM_MEMORY | sed -e 's/[^0-9]//g'`))
PKG_MEMORY=$((`echo $PKG_MEMORY | sed -e 's/[^0-9]//g'`))
[ -z "$USER" ] && USER=kamailio
[ -z "$GROUP" ] && GROUP=kamailio
[ $SHM_MEMORY -le 0 ] && SHM_MEMORY=32
[ $PKG_MEMORY -le 0 ] && PKG_MEMORY=4

if test "$DUMP_CORE" = "yes" ; then
# set proper ulimit
ulimit -c unlimited

# directory for the core dump files
COREDIR=/tmp
echo "$COREDIR/core.%e.sig%s.%p" > /proc/sys/kernel/core_pattern
fi

# /var/run can be a tmpfs
if [ ! -d $HOMEDIR ]; then
mkdir -p $HOMEDIR
chown ${USER}:${GROUP} $HOMEDIR
fi

OPTIONS="-P $PID_FILE -m $SHM_MEMORY -M $PKG_MEMORY -u $USER -g $GROUP $EXTRA_OPTIONS"


# See how we were called.
case "$1" in
start|debug)
start
;;
stop)
stop
;;
status)
status $KAM
RETVAL=$?
;;
restart)
stop
start
;;
condrestart)
if [ -f $PID_FILE ] ; then
stop
start
fi
;;
*)
echo $"Usage: $PROG {start|stop|restart|condrestart|status|debug|help}"
exit 1
esac

exit $RETVAL
17 changes: 17 additions & 0 deletions pkg/kamailio/obs/kamailio.service
@@ -0,0 +1,17 @@
[Unit]
Description=Kamailio (OpenSER) - the Open Source SIP Server
After=network.target

[Service]
Type=simple
User=kamailio
Group=daemon
Environment='CFGFILE=/etc/kamailio/kamailio.cfg'
Environment='SHM_MEMORY=64'
Environment='PKG_MEMORY=4'
EnvironmentFile=/etc/sysconfig/kamailio
ExecStart=/usr/sbin/kamailio -DD -P /var/run/kamailio/kamailio.pid -f $CFGFILE -m $SHM_MEMORY -M $PKG_MEMORY
Restart=on-failure

[Install]
WantedBy=multi-user.target

0 comments on commit 0e20114

Please sign in to comment.