Commit 35375fb8 authored by Seblu's avatar Seblu
Browse files

Add service and timer files

parent d79def9b
Loading
Loading
Loading
Loading

archive-aur.service

0 → 100644
+6 −0
Original line number Diff line number Diff line
[Unit]
Description=Archive AUR

[Service]
Type=oneshot
ExecStart=/home/archlinux/archivetools/aur-rsync

archive-aur.timer

0 → 100644
+10 −0
Original line number Diff line number Diff line
[Unit]
Description=Daily Archlinux Archive Update

[Timer]
OnCalendar=12:42:00
AccuracySec=1m
Persistent=true

[Install]
WantedBy=timers.target
+9 −0
Original line number Diff line number Diff line
[Unit]
Description=Hardlinking of Archilinux Archive
After=archive-repos.service archive-aur.service

[Service]
Type=oneshot
Nice=19
IOSchedulingClass=idle
ExecStart=/usr/bin/hardlink -Ocv /srv/ftp/archlinux/archive

archive-hardlink.timer

0 → 100644
+10 −0
Original line number Diff line number Diff line
[Unit]
Description=Monthly Hardlinkng of Archlinux Archive

[Timer]
OnCalendar=*-*-03 03:00:00
AccuracySec=1m
Persistent=true

[Install]
WantedBy=timers.target

archive-repos.service

0 → 100644
+8 −0
Original line number Diff line number Diff line
[Unit]
Description=Archlinux Archive Update

[Service]
Type=oneshot
ExecStart=/home/archlinux/archivetools/repo-rsync
ExecStart=/home/archlinux/archivetools/package-links
ExecStart=/home/archlinux/archivetools/arm-link
Loading