Systemd no inicia una unidad de temporizador

Systemd no inicia una unidad de temporizador

Me gustaría crear un temporizador que lance un comando cada 2 meses (el primero de mes) eso ya lo hago con un cron, pero me gustaría hacer lo mismo con systemd y deshacerme del cron.

Tengo un problema porque cuando inicio mi temporizador, systemd se negó a activarlo con el siguiente error:

systemd[1]: Starting Start my timer.
systemd[1]: myservice.timer failed to enter waiting state: Invalid argument
systemd[1]: Failed to start Start my timer
systemd[1]: Unit myservice.timer entered failed state.

Utilicé las dos unidades siguientes:

miservicio.temporizador

[Unit]
Description=Start my timer

[Timer]
OnCalendar=*-01/2-01 00:00:01
Persistent=true
WakeSystem=true

[Install]
WantedBy=timers.target

miservicio.servicio

[Unit]
Description=Start my command

[Service]
Type=oneshot
ExecStart=/usr/local/mycommand.sh

[Install]
WantedBy=multi-user.target

Supongo que no funciona porque le falta un parámetro o el parámetro OnCalendar no es bueno. Estoy en Debian Jessie.

Gracias.

información relacionada