mirror of
https://github.com/systemd/systemd.git
synced 2024-11-01 09:21:26 +03:00
37 lines
509 B
Bash
Executable File
37 lines
509 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x
|
|
set -e
|
|
|
|
>/failed
|
|
|
|
cat <<'EOL' >/lib/systemd/system/my.service
|
|
[Service]
|
|
Type=oneshot
|
|
ExecStart=/bin/echo Timer runs me
|
|
EOL
|
|
|
|
cat <<'EOL' >/lib/systemd/system/my.timer
|
|
[Timer]
|
|
OnBootSec=10s
|
|
OnUnitInactiveSec=1h
|
|
EOL
|
|
|
|
systemctl unmask my.timer
|
|
|
|
systemctl start my.timer
|
|
|
|
mkdir -p /etc/systemd/system/my.timer.d/
|
|
cat <<'EOL' >/etc/systemd/system/my.timer.d/override.conf
|
|
[Timer]
|
|
OnBootSec=10s
|
|
OnUnitInactiveSec=1h
|
|
EOL
|
|
|
|
systemctl daemon-reload
|
|
|
|
systemctl mask my.timer
|
|
|
|
touch /testok
|
|
rm /failed
|