diff options
Diffstat (limited to 'functions/exit.sh')
-rwxr-xr-x | functions/exit.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/functions/exit.sh b/functions/exit.sh index 1c2446204..47b88a775 100755 --- a/functions/exit.sh +++ b/functions/exit.sh @@ -24,3 +24,9 @@ Exit () umount chroot/selinux > /dev/null 2>&1 || true umount chroot/sys > /dev/null 2>&1 || true } + +Setup_cleanup () +{ + Echo_message "Setting up cleanup function" + trap 'Exit' INT TERM HUP EXIT +} |