search for: c3ebfd9

Displaying 5 results from an estimated 5 matches for "c3ebfd9".

2019 Nov 21
4
[PATCH 0/2] Delay firstboot scripts to some later time
When firstboot is used from virt-v2v the scripts, if not fast enough, can get killed by Windows. After windows installs virtio drivers injected by virt-v2v it performs some internall reboot, stopping all the running services and killing any running firstboot script. This is problem mostly for MSI installs (like qemu-ga that was added recently) that can take several seconds to finish. This change
2020 Feb 11
3
Re: [PATCH 2/2] firstboot: schedule firstboot as delayed task
...t to server. Error: 0x8007045B > > Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> > --- > mlcustomize/firstboot.ml | 10 +++++++++- > 1 file changed, 9 insertions(+), 1 deletion(-) > > diff --git a/mlcustomize/firstboot.ml b/mlcustomize/firstboot.ml > index c3ebfd9..b4ca181 100644 > --- a/mlcustomize/firstboot.ml > +++ b/mlcustomize/firstboot.ml > @@ -286,10 +286,18 @@ set log=%%firstboot%%\\log.txt > set scripts=%%firstboot%%\\scripts > set scripts_done=%%firstboot%%\\scripts-done > > -call :main >> \"%%log%%\" 2>&...
2019 Nov 21
0
[PATCH 1/2] firstboot: use absolute path to rhsrvany
Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> --- mlcustomize/firstboot.ml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mlcustomize/firstboot.ml b/mlcustomize/firstboot.ml index a8f4ef7..c3ebfd9 100644 --- a/mlcustomize/firstboot.ml +++ b/mlcustomize/firstboot.ml @@ -307,7 +307,7 @@ for %%%%f in (\"%%scripts%%\"\\*.bat) do ( ) echo uninstalling firstboot service -%s -s firstboot uninstall +\"%%firstboot%%\\%s\" -s firstboot uninstall " firstboot_dir_win srvany...
2019 Nov 21
0
[PATCH 2/2] firstboot: schedule firstboot as delayed task
...tely with the error: Failed to connect to server. Error: 0x8007045B Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> --- mlcustomize/firstboot.ml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/mlcustomize/firstboot.ml b/mlcustomize/firstboot.ml index c3ebfd9..b4ca181 100644 --- a/mlcustomize/firstboot.ml +++ b/mlcustomize/firstboot.ml @@ -286,10 +286,18 @@ set log=%%firstboot%%\\log.txt set scripts=%%firstboot%%\\scripts set scripts_done=%%firstboot%%\\scripts-done -call :main >> \"%%log%%\" 2>&1 +call :main %%1 >> \&qu...
2020 Feb 13
0
Re: [PATCH 2/2] firstboot: schedule firstboot as delayed task
...> > Signed-off-by: Tomáš Golembiovský <tgolembi@redhat.com> > > --- > > mlcustomize/firstboot.ml | 10 +++++++++- > > 1 file changed, 9 insertions(+), 1 deletion(-) > > > > diff --git a/mlcustomize/firstboot.ml b/mlcustomize/firstboot.ml > > index c3ebfd9..b4ca181 100644 > > --- a/mlcustomize/firstboot.ml > > +++ b/mlcustomize/firstboot.ml > > @@ -286,10 +286,18 @@ set log=%%firstboot%%\\log.txt > > set scripts=%%firstboot%%\\scripts > > set scripts_done=%%firstboot%%\\scripts-done > > > > -call :main &g...