mirror of
https://github.com/hackacad/bastille.git
synced 2025-12-22 10:10:46 +01:00
add/remove rctl limits on container start/stop
This commit is contained in:
@@ -67,6 +67,13 @@ for _jail in ${JAILS}; do
|
|||||||
echo -e "${COLOR_GREEN}[${_jail}]:${COLOR_RESET}"
|
echo -e "${COLOR_GREEN}[${_jail}]:${COLOR_RESET}"
|
||||||
jail -f "${bastille_jailsdir}/${_jail}/jail.conf" -c ${_jail}
|
jail -f "${bastille_jailsdir}/${_jail}/jail.conf" -c ${_jail}
|
||||||
|
|
||||||
|
## add rctl limits
|
||||||
|
if [ -s "${bastille_jailsdir}/${_jail}/rctl.conf" ]; then
|
||||||
|
while read _limits; do
|
||||||
|
rctl -a "${_limits}"
|
||||||
|
done < "${bastille_jailsdir}/${_jail}/rctl.conf"
|
||||||
|
fi
|
||||||
|
|
||||||
## add ip4.addr to firewall table:jails
|
## add ip4.addr to firewall table:jails
|
||||||
if [ ! -z "${bastille_jail_loopback}" ]; then
|
if [ ! -z "${bastille_jail_loopback}" ]; then
|
||||||
pfctl -q -t jails -T add $(jls -j ${_jail} ip4.addr)
|
pfctl -q -t jails -T add $(jls -j ${_jail} ip4.addr)
|
||||||
|
|||||||
@@ -69,6 +69,13 @@ for _jail in ${JAILS}; do
|
|||||||
pfctl -q -t jails -T delete $(jls -j ${_jail} ip4.addr)
|
pfctl -q -t jails -T delete $(jls -j ${_jail} ip4.addr)
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
## remove rctl limits
|
||||||
|
if [ -s "${bastille_jailsdir}/${_jail}/rctl.conf" ]; then
|
||||||
|
while read _limits; do
|
||||||
|
rctl -r "${_limits}"
|
||||||
|
done < "${bastille_jailsdir}/${_jail}/rctl.conf"
|
||||||
|
fi
|
||||||
|
|
||||||
## stop container
|
## stop container
|
||||||
echo -e "${COLOR_GREEN}[${_jail}]:${COLOR_RESET}"
|
echo -e "${COLOR_GREEN}[${_jail}]:${COLOR_RESET}"
|
||||||
jail -f "${bastille_jailsdir}/${_jail}/jail.conf" -r ${_jail}
|
jail -f "${bastille_jailsdir}/${_jail}/jail.conf" -r ${_jail}
|
||||||
|
|||||||
Reference in New Issue
Block a user