Compare commits

..

3 commits

Author SHA1 Message Date
sid
a9538ce62c Merge pull request 'journald-upload needs to wait for tailscaled' (#74) from develop into master
Some checks failed
Deploy configs / deploy-configs (push) Failing after 31s
Reviewed-on: #74
2026-05-19 14:13:15 +02:00
sid
00af06d380 fix journald upload service config
All checks were successful
Build hosts / build-hosts (pull_request) Successful in 21s
Flake check / flake-check (pull_request) Successful in 21s
2026-05-19 14:11:00 +02:00
sid
0c68ed16f7 journald-upload needs to wait for tailscaled
Some checks failed
Build hosts / build-hosts (pull_request) Failing after 1s
Flake check / flake-check (pull_request) Failing after 1s
2026-05-19 14:03:35 +02:00

View file

@ -6,12 +6,12 @@
systemd.services.systemd-journal-upload = {
after = [
"network-online.target"
"tailscaled.service"
];
wants = [
"network-online.target"
"tailscaled.service"
];
wants = [ "network-online.target" ];
serviceConfig = {
TimeoutStartSec = 20; # Tailscale is slow
};
};
}