11 lines
156 B
Text
11 lines
156 B
Text
#
|
|
# This script removes dirs for chroot initialization.
|
|
#
|
|
|
|
case "${ACTION}" in
|
|
post)
|
|
if [ -d var/chroot/ntpd ]; then
|
|
rm -rf var/chroot/ntpd
|
|
fi
|
|
;;
|
|
esac
|