Jun 09 17:58:30 higgsboson reflector[30109]: rating http://www.gtlib.gatech.edu/pub/archlinux/
Jun 09 17:58:30 higgsboson reflector[30109]: rating rsync://rsync.gtlib.gatech.edu/archlinux/
Jun 09 17:58:30 higgsboson reflector[30109]: rating http://lug.mtu.edu/archlinux/
Jun 09 17:58:30 higgsboson reflector[30109]: Server Rate Time
...
```
* there are a lot of useful [systemd unit options](http://www.freedesktop.org/software/systemd/man/systemd.exec.html) like `IOSchedulingPriority`, `Nice` or `JobTimeoutSec`
* it is possible to let depend units on other services, like mounting the nfs host
before starting the mysql-backup.service or depending on the network.target.
So let's get it started. The first thing you might want to do, is to replace the
default scripts located in the [runparts](http://superuser.com/questions/402781/what-is-run-parts-in-etc-crontab-and-how-do-i-use-it)
If you want to execute at a special calendar events for example "every first day in a month" use the ["OnCalendar=" option](http://www.freedesktop.org/software/systemd/man/systemd.time.html) in the timer file.
example:
``` ini send-bill.timer
[Unit]
Description=Daily Timer
[Timer]
OnCalendar=*-*-1 0:0:O
Unit=send-bill.target
[Install]
WantedBy=basic.target
```
That's all for the moment. Have a good time using the power of systemd!