This file is indexed.

/etc/init/conmux-daemon.conf is in conmux 0.12.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
description "CONMUX daemon"

stop on stopping conmux

instance $CONMUX_CONFIG

script
    if [ ! -r "$CONMUX_CONFIG" ]; then
        echo "Set CONMUX_CONFIG" >&2
        exit 1
    fi
    log="/var/log/conmux/daemon-$(basename "$CONMUX_CONFIG" .cf).log"
    exec /usr/sbin/conmux "$CONMUX_CONFIG" >>"$log" 2>&1
end script