UnrealIRCd Cron Check with SystemD Timers

If your UnrealIRCd is up and running but you have a question about it, then use this forum.
(NOT for installation or connecting issues! Use the other forum instead.)

Moderator: Supporters

Locked
acidvegas
Posts: 8
Joined: Sat Feb 04, 2017 12:58 am
Location: Olympia, Greece
Contact:

UnrealIRCd Cron Check with SystemD Timers

Post by acidvegas »

unrealircd.service

Code: Select all

[Unit]
Description=UnrealIRCd Cron Check Service

[Service]
Type=oneshot
User=acidvegas
ExecStart=/home/acidvegas/unrealircd/unrealircd croncheck
unrealircd.timer

Code: Select all

[Unit]
Description=UnrealIRCd Cron Check Timer

[Timer]
OnCalendar=*:0/5
Persistent=true

[Install]
WantedBy=timers.target
Not sure if I am doing this right. Trying to part ways with using cron and using a systemd timer for check if unreal is runnning. Also need to make a timer for starting unreal after reboot, unless the two can be combined.

Any feedback would be great, thanks.
Locked