File: conmux.upstart

package info (click to toggle)
conmux 0.12.0-1.1
  • links: PTS
  • area: main
  • in suites: bullseye
  • size: 360 kB
  • sloc: exp: 1,772; perl: 1,361; python: 202; sh: 115; makefile: 50
file content (16 lines) | stat: -rw-r--r-- 369 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
description "CONMUX registry"

start on runlevel [2345]
stop on runlevel [!2345]

script
    touch /var/run/conmux-registry
    exec /usr/sbin/conmux-registry 63000 /var/run/conmux-registry \
        >>/var/log/conmux/registry.log 2>&1
end script

post-start script
    for f in /etc/conmux/*.cf; do
        start conmux-daemon "CONMUX_CONFIG=$f" &
    done
end script