Compare commits

...

2 commits

Author SHA1 Message Date
hhftechnologies
b36658a0ee Merge branch 'main' of https://git.hhf.technology/hhf/script-management-cloudpanel 2024-11-27 16:03:39 +05:30
hhftechnologies
21b64f79da update 2024-11-27 16:03:30 +05:30

View file

@ -82,11 +82,27 @@ interrupt_handler() {
exit 130
}
# Cleanup function
cleanup() {
# Function to clean up temporary files
cleanup_files() {
# Remove temporary files if they exist
[ -f "/tmp/crowdsec_services.tmp" ] && rm -f "/tmp/crowdsec_services.tmp"
[ -f "/tmp/crowdsec_packages.tmp" ] && rm -f "/tmp/crowdsec_packages.tmp"
return 0
}
# Function to remove the script
remove_script() {
if [ -f "$0" ]; then
rm -f -- "$0"
fi
if [ -f "task_formatter.sh" ]; then
rm -f task_formatter.sh
fi
return 0
}
# Main cleanup function
cleanup() {
format_output cleanup_files "Cleaning up temporary files"
format_output remove_script "Removing script"
}