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