If you want to stop all jobs from running, IMHO it is better to
- copy the crontab file somewhere safe
- remove the crontab file
Then afterwards:
- install the crontab file again from the safecopy
(to copy/remove)
mkdir -p /var/crontabs_bu
DTTM=$(date +'%Y%m%d%H%M%S')
crontab -l >/var/crontabs_bu/crontab.${LOGNAME}.${DTTM}
(make a remote copy also, whatever suits you)
crontab -r
(to reinstall)
crontab /var/crontabs_bu/crontab.${LOGNAME}.yyyymmddHHMMSS (choose a file that is saved here)
HTH,
p5wizard