diff options
author | dd <91662885+dd010101@users.noreply.github.com> | 2025-04-28 16:26:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-04-28 16:26:00 +0200 |
commit | fb25036bfdc7bacb01733d9cf61d3bda631688bf (patch) | |
tree | b09b353e8f44c6e315244fe81996154c88ec3f32 | |
parent | 2c3db635a837dc15a5aabde2a02685477ae2c804 (diff) | |
parent | 6b58819dedd2e9bd6382b1f52b24080f8bd13ad7 (diff) | |
download | vyos-jenkins-master.tar.gz vyos-jenkins-master.zip |
Restart uncron to fix initial socket ownership
-rwxr-xr-x | 4-uncron.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/4-uncron.sh b/4-uncron.sh index e18b4e6..46e253c 100755 --- a/4-uncron.sh +++ b/4-uncron.sh @@ -73,6 +73,9 @@ systemctl daemon-reload > /dev/null 2>&1 # Ensure uncron service is enabled. systemctl enable --now uncron.service > /dev/null 2>&1 +# restart uncron service to fix user/group issue +systemctl restart uncron.service > /dev/null 2>&1 + echo echo "Part 4 of the installer is now done." echo "Please run part five (5-docker-jobs.sh) to set up the vyos build container jobs." |