Compare commits

...

3 commits

2 changed files with 3 additions and 1 deletions

View file

@ -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.

View file

@ -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