Revert "osbuild-worker-executor: job-id in control.json as hostname"

This reverts commit fc1d1c3b8f.
This commit is contained in:
Sanne Raymaekers 2024-06-20 13:42:52 +02:00
parent ae4467ab0d
commit 4853bf3ec0
4 changed files with 0 additions and 56 deletions

View file

@ -12,14 +12,6 @@ var (
HandleIncludedSources = handleIncludedSources
)
func MockUnixSethostname(new func([]byte) error) (restore func()) {
saved := unixSethostname
unixSethostname = new
return func() {
unixSethostname = saved
}
}
func MockOsbuildBinary(t *testing.T, new string) (restore func()) {
t.Helper()