mirror of
https://github.com/jokob-sk/NetAlertX.git
synced 2025-12-07 09:36:05 -08:00
8 lines
192 B
Bash
8 lines
192 B
Bash
#!/bin/bash
|
|
echo "Initializing crond..."
|
|
# Add crontab file
|
|
rm /etc/crontabs/root
|
|
chmod 600 /etc/crontabs/netalertx
|
|
chown netalertx:netalertx /etc/crontabs/netalertx
|
|
echo "crond initialized."
|