diff --git a/README.md b/README.md index a985faa..d7dcedc 100644 --- a/README.md +++ b/README.md @@ -9,6 +9,7 @@ To use it, edit chroot.sh and edit 3 variables : | -------- | ----------- | | CHROOTPATH | The path where this script store all files, bin, lib needed to chroot website (create this before) | | ZONEINFO | The path where zoneinfo is stored. Find this with `find /usr -type d -name "zoneinfo"` | +| LISTCHROOTFILE | The list file who contain all chrooted directory | ## Use`` `bash chroot.sh --install` copy all dependencies and store it on CHROOTPATH. diff --git a/chroot.sh b/chroot.sh index 45cc32a..19ae2d1 100644 --- a/chroot.sh +++ b/chroot.sh @@ -27,6 +27,7 @@ fatal() { echo -e "${RED}[FATAL] $* ${NC}" | logger --tag "${SCRIPTNAME}" -- LOCK="/var/lock/${SCRIPTNAME}.lock" CHROOTPATH="/var/chroot" ZONEINFO="/usr/share/zoneinfo" +LISTCHROOTFILE="/var/chroot/list" function _USAGE { cat << EOF @@ -245,7 +246,7 @@ function _CONFIGURE chmod 755 "${WEBCHROOT}/var/" info "Add sticky bit" chmod 1757 "${WEBCHROOT}/var/lib/php/sessions" - + echo ${WEBCHROOT} >> ${LISTCHROOTFILE} } function _CLEAN