Pendahuluan: Untuk mencegah instance skrip bash berjalan lebih dari sekali secara bersamaan, berikut adalah tip kecil tentang cara menulis skrip.
Kerangka skrip: #!/bin/bash
# Prevents that an instance of the script starts while another instance of it is still running
scriptname=$(basename $0)
lockfile="/tmp/${scriptname}.lock"
if [ -e $lockfile ]; then exit 1 ; fi
touch $lockfile.lock
# Delete lock file if CTRL-C typed from the keyboard
trap 'rm $lockfile ; exit' SIGINT SIGQUIT
#----------------------------------
# ############ Put your script code here #####################
#----------------------------------
# delete the lock file
rm $lockfile
# .eof
Menggunakan alat SS untuk pemecahan masalah jaringan
Keluarkan sertifikat SSL gratis dan CA yang ditandatangani untuk server web dari LetsEncrypt