Nabend zusammen,
ich sehe anscheinend den Wald vor lauter Bäumen nicht, denn ich bin gerade zu blöd, meinen Unraid Server per WOL über einen Raspi zu wecken.
Das Wecken funktioniert an sich, aber mein Cronjob will einfach nicht funktionieren.
Vielleicht kann mir ja wer von euch auf die Sprünge helfen:
Raspi OS: Raspbian (Debian Buster)
Mein gebasteltes Script zum Wecken (funktioniert per SSH aus der Konsole gestartet):
Bash: wakeUnraid.sh
#!/bin/bash
### Script for waking up a WOL-Server
### 'wakeonlan' package has to be installed for this to work
### CONFIG ###
MAC="00:1B:21:3A:52:A4"
### DO NOT EDIT THIS HERE ###
wakeonlan $MAC
Meine crontab (wird von einem User ohne sudo-Rechte ausgeführt):
Code
# Edit this file to introduce tasks to be run by cron.
#
# Each task to run has to be defined through a single line
# indicating with different fields when the task will be run
# and what command to run for the task
#
# To define the time you can provide concrete values for
# minute (m), hour (h), day of month (dom), month (mon),
# and day of week (dow) or use '*' in these fields (for 'any').
#
# Notice that tasks will be started based on the cron's system
# daemon's notion of time and timezones.
#
# Output of the crontab jobs (including errors) is sent through
# email to the user the crontab file belongs to (unless redirected).
#
# For example, you can run a backup of all your user accounts
# at 5 a.m every week with:
# 0 5 * * 1 tar -zcf /var/backups/home.tgz /home/
#
# For more information see the manual pages of crontab(5) and cron(8)
#
# m h dom mon dow command
# sirbear wol for parity check at first of month at 0 o clock
0 0 1 * * /home/wakiwake/wakeUnraid.sh
# sirbear wol for mover and trim once a week
0 2 * * 0 /home/wakiwake/wakeUnraid.sh
Alles anzeigen
Das Script ist wie gesagt ausführbar.
Habe bereits das syslog-Log nach CRON gegrept und konnte keine Infos zu meinem Script darin finden, scheint so, als würde es also überhaupt nicht von cron ausgeführt werden.
Wo ist denn der Fehler? Stehe irgendwie auf dem Schlauch