Merge pull request 'Add list of chrooted directory' (#1) from add-file-chroot into stable

Reviewed-on: #1
This commit is contained in:
Dryusdan 2021-03-18 16:16:44 +01:00
commit f19b8ffec9
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