summaryrefslogtreecommitdiff
path: root/runit/sv/wireplumber/log/run
blob: aa89d140b64b437747f9f997f1735428bbbc44cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

[ -r ../conf ] && . ../conf

if [ "${LOGGING_ENABLE}x" == "1x" ]; then
    # Create the log directory if not exists.
    [ -d "${LOG_DIR}" ] || mkdir -p "${LOG_DIR}"

    exec svlogd -tt "${LOG_DIR}"
else
    exec chpst -b wireplumber-log-null cat >/dev/null
fi