#!/bin/sh
#
# LTSP Wrapper to avoid running daemons while performing maintainence.
#

if [ "$LTSP_HANDLE_DAEMONS" != "false" ]; then
    /sbin/start-stop-daemon.real "$@"
fi
