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