diff options
author | kaotisk <kaotisk@arching-kaos.org> | 2024-03-27 03:40:07 +0200 |
---|---|---|
committer | kaotisk <kaotisk@arching-kaos.org> | 2024-03-27 03:40:07 +0200 |
commit | 5c08911132823735801aa70a4e2a23bc3f1c859a (patch) | |
tree | 17dc9ca8c8c2958cc8323484b1e9df1bd1630569 /lib/_ak_script_exit | |
parent | 5ad0e143e7f76c740defe6d983e4c54007a23b25 (diff) | |
download | arching-kaos-tools-5c08911132823735801aa70a4e2a23bc3f1c859a.tar.gz arching-kaos-tools-5c08911132823735801aa70a4e2a23bc3f1c859a.tar.bz2 arching-kaos-tools-5c08911132823735801aa70a4e2a23bc3f1c859a.zip |
Moving stuff to lib
Diffstat (limited to 'lib/_ak_script_exit')
-rwxr-xr-x | lib/_ak_script_exit | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/_ak_script_exit b/lib/_ak_script_exit new file mode 100755 index 0000000..81fe2c8 --- /dev/null +++ b/lib/_ak_script_exit @@ -0,0 +1,17 @@ +#!/bin/bash + +exit_program(){ +# cd $curdir +# if [ "$3" == "save_log" ] +# then +# tar cvfz $curdir/$(basename $tempdir)-$launch_timestamp.tgz $tempdir +# fi +# rm -rf $tempdir + if [ $1 -ne 0 ] + then + logit "EXIT" "$2 ($1)" + else + logit "EXIT" "$2" + fi + exit $1 +} |