mirror of
https://gitlab.archlinux.org/archlinux/infrastructure.git
synced 2026-08-03 22:53:04 +02:00
Add dependency on network-online.target for bumpbuddy and arch-pkg-repo-updater systemd service to ensure network is accessible before they start
11 lines
290 B
SYSTEMD
11 lines
290 B
SYSTEMD
[Unit]
|
|
Wants=network-online.target
|
|
After=network-online.target
|
|
|
|
[Service]
|
|
Type=oneshot
|
|
User=bumpbuddy
|
|
LimitNOFILE=4096
|
|
EnvironmentFile=/etc/conf.d/arch-pkg-repo-updater
|
|
ExecStart=/usr/bin/ssh-agent bash -c "ssh-add /home/bumpbuddy/.ssh/id_ed25519; arch-pkg-repo-updater update $TARGET_DIR"
|