================================================================================
                          Managing chroot with schroot
================================================================================

Adding a chroot
See debootstrap.txt

Configure a chroot:
/etc/schroot/chroot.d/<chroot_name>.conf

[<chroot_name>]
description=Description
directory=/srv/chroot/<chroot_name>
type=directory
users=<my_user>
root-users=<my_user>
profile=<profile> # See schroot.conf(5)

Entering a chroot

$ sudo schroot -c <chroot_name>

Removing a chroot
OUTSIDE THE CHROOT
$ schroot -l # See if any user are still in connected
$ sudo rm -r /srv/chroot/<chroot_name>
$ sudo rm /etc/schroot/chroot.d/<chroot_name>.conf
