summarylogtreecommitdiffstats
path: root/run_log.freeswitch
blob: a8ca52c32ec505a81d729a108e4607ecd1a92746 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/bin/sh -e
if [ $0 != "./run" ];then
  echo "This script meant to be linked as ./run in a service/log directory only!"
  exit 1
fi
logdir=$(basename $(pwd))
if [ "$logdir" != "log" ];then
  echo "This script meant to be run from a service/log directory only!"
  exit 1
fi
if [ -w /var/log ];then
  if [ -f ./conf ];then
    source ./conf
  fi
  user_group=${USERGROUP:-daemon:adm}
  service=$(basename $(dirname $(pwd)))
  [ -d "/var/log/$service" ] || mkdir -p "/var/log/$service"
  [ -L ./main ] || [ -d ./main ] || ln -s "/var/log/$service" ./main
  [ -L ./current ] || ln -s main/current
  usergroup=$(stat -c "%U:%G" "/var/log/$service")
  if [ "$usergroup" != "$user_group" ];then
    chown -R $user_group "/var/log/$service"
  fi
  echo Logging as $user_group to /var/log/$service
  exec chpst -u $user_group svlogd -t ./main
else
  echo Logging in $PWD
  exec svlogd -t ./
fi