This file is indexed.

/etc/init/conmux.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
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