#! /bin/sh # /etc/init.d/chroot-sid # # Some things that run always touch /var/lock/chroot-sid # Carry out specific functions when asked to by the system case "$1" in start) echo "Starting chroot sid" schroot -c sid ;; stop) echo "Stopping chroot sid" # Is anything needed??? ;; *) echo "Usage: /etc/init.d/chroot-sid {start|stop}" exit 1 ;; esac exit 0