#Start Afresh
cleanJailFirst=1

#Directory of the jail, change this, also change it below in forceCopy
chroot="/home/naughty"

#Make sure it works
testCommandsInsideJail=["/bin/bash"]
processNames=["bash"]

#Makejails isn't very good at finding library dependencies
forceCopy=[
#Change this to the proper homedir
"/home/naughty",
#
"/lib/libnss_files*",
"/lib/libattr*",
"/lib/librt*",
"/lib/libacl*",
"/lib/libncurses*",
"/lib/ld*",
"/lib/libc.*",
"/lib/libc-*",
"/lib/libdl*",
"/lib/librt*",
"/lib/ncurse*",
"/lib/libpthread*",
"/etc/group",
"/etc/passwd",
#You can copy anythink from /dev and it will be set-up properly
#"/dev/tty1",
#"/dev/tty2",
#"/dev/tty3",
#"/dev/tty4",
#"/dev/tty5",
#"/dev/tty6",
#"/dev/null",
]

#THe users and groups to keep, change this to the correct user
users=["root","naughty"]
groups=["root","naughty"]

#Debian packages to copy into chroot
packages=["coreutils"]
#Will install package dependencies, can be quite useful
#useDepends=1
