Merge pull request #24706 from SEIAROTg/systemd-absolute-path

Fixes missing binary in systemd.
This commit is contained in:
openshift-merge-bot[bot] 2024-11-29 14:27:47 +00:00 committed by GitHub
commit c3d7723498
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -8,5 +8,5 @@ Type=oneshot
# Set a timeout as by default oneshot does not have one and in case network-online.target
# never comes online we do not want to block forever, 90s is the default systemd unit timeout.
TimeoutStartSec=90s
ExecStart=sh -c 'until systemctl is-active network-online.target; do sleep 0.5; done'
ExecStart=/bin/sh -c 'until systemctl is-active network-online.target; do sleep 0.5; done'
RemainAfterExit=yes