#Start Afresh
cleanJailFirst=1

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

#Make sure it works
testCommandsInsideJail=["/usr/bin/elinks https://www.encrypt.standardbank.co.za/"]
processNames=["elinks"]

#Makejails isn't very good at finding library dependencies
forceCopy=[
#Change this to the proper homedir
"/home/elinks",
#
"/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*",
"/lib/libresolv*",
"/etc/group",
"/etc/passwd",
"/etc/hosts",
"/etc/resolv.conf",
#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","elinks"]
groups=["root","elinks"]

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

