Displaying 8 results from an estimated 8 matches for "s99virt".
2016 Aug 04
3
[PATCH v2 1/2] firstboot: rename systemd and sysvinit
...centos"|"scientificlinux"|"redhat-based" ->
@@ -142,11 +159,16 @@ WantedBy=default.target
g#mkdir_p "/etc/rc.d/rc3.d";
g#mkdir_p "/etc/rc.d/rc5.d";
g#ln_sf (sprintf "%s/firstboot.sh" firstboot_dir)
- "/etc/rc.d/rc2.d/S99virt-sysprep-firstboot";
+ "/etc/rc.d/rc2.d/S99guestfs-firstboot";
g#ln_sf (sprintf "%s/firstboot.sh" firstboot_dir)
- "/etc/rc.d/rc3.d/S99virt-sysprep-firstboot";
+ "/etc/rc.d/rc3.d/S99guestfs-firstboot";
g#ln_sf (sprintf "%s/fi...
2012 Sep 21
3
[PATCH] sysprep: handle distro specific sysv scripts
...it.d/rc2.d";
+ g#mkdir_p "/etc/init.d/rc3.d";
+ g#mkdir_p "/etc/init.d/rc5.d";
+ g#ln_sf (sprintf "%s/firstboot.sh" firstboot_dir)
+ "/etc/init.d/virt-sysprep-firstboot";
+ g#ln_sf "../virt-sysprep-firstboot"
+ "/etc/init.d/rc2.d/S99virt-sysprep-firstboot";
+ g#ln_sf "../virt-sysprep-firstboot"
+ "/etc/init.d/rc3.d/S99virt-sysprep-firstboot";
+ g#ln_sf "../virt-sysprep-firstboot"
+ "/etc/init.d/rc5.d/S99virt-sysprep-firstboot"
+
+and install_sysvinit_debian g =
+ g#mkdir_p "...
2016 Aug 26
2
[PATCH 1/2] customize: Fix firstboot scripts on Debian 6 & 7 (RHBZ#1019388).
I have only verified the fix on Debian 7.
The Debian 6 guest doesn't appear to boot, I'm not sure why.
The second patch contains a test suite.
Rich.
2017 Mar 13
2
virt-customize fail to inject firstboot script when running it from script.
...trace: ln_sf = 0
libguestfs: trace: ln_sf "../init.d/guestfs-firstboot" "/etc/rc5.d/S99guestfs-firstboot"
libguestfs: trace: ln_sf = 0
libguestfs: trace: rm_f "/etc/init.d/virt-sysprep-firstboot"
libguestfs: trace: rm_f = 0
libguestfs: trace: rm_f "/etc/rc2.d/S99virt-sysprep-firstboot"
libguestfs: trace: rm_f = 0
libguestfs: trace: rm_f "/etc/rc3.d/S99virt-sysprep-firstboot"
libguestfs: trace: rm_f = 0
libguestfs: trace: rm_f "/etc/rc5.d/S99virt-sysprep-firstboot"
libguestfs: trace: rm_f = 0
libguestfs: trace: write "/usr/lib...
2014 Mar 18
2
[PATCH] customize: Move virt-customize-related code to a separate
There's not going to be an easy way to present this patch. It's huge
and interconnected.
Anyway, what it does is lay the groundwork for a new tool which I'm
calling 'virt-customize'. virt-customize is virt-builder, but without
the part where it downloads a template from a respository. Just the
part where it customizes the template, that is, installing packages,
editing
2017 Mar 14
0
Re: virt-customize fail to inject firstboot script when running it from script.
...bguestfs: trace: ln_sf "../init.d/guestfs-firstboot" "/etc/rc5.d/S99guestfs-firstboot"
> libguestfs: trace: ln_sf = 0
> libguestfs: trace: rm_f "/etc/init.d/virt-sysprep-firstboot"
> libguestfs: trace: rm_f = 0
> libguestfs: trace: rm_f "/etc/rc2.d/S99virt-sysprep-firstboot"
> libguestfs: trace: rm_f = 0
> libguestfs: trace: rm_f "/etc/rc3.d/S99virt-sysprep-firstboot"
> libguestfs: trace: rm_f = 0
> libguestfs: trace: rm_f "/etc/rc5.d/S99virt-sysprep-firstboot"
> libguestfs: trace: rm_f = 0
> libguestf...
2017 Mar 14
2
Re: virt-customize fail to inject firstboot script when running it from script.
...ace: ln_sf "../init.d/guestfs-firstboot" "/etc/rc5.d/S99guestfs-firstboot"
>> libguestfs: trace: ln_sf = 0
>> libguestfs: trace: rm_f "/etc/init.d/virt-sysprep-firstboot"
>> libguestfs: trace: rm_f = 0
>> libguestfs: trace: rm_f "/etc/rc2.d/S99virt-sysprep-firstboot"
>> libguestfs: trace: rm_f = 0
>> libguestfs: trace: rm_f "/etc/rc3.d/S99virt-sysprep-firstboot"
>> libguestfs: trace: rm_f = 0
>> libguestfs: trace: rm_f "/etc/rc5.d/S99virt-sysprep-firstboot"
>> libguestfs: trace: rm_f = 0...
2013 Jun 14
3
[PATCH 0/2] Fix inspection of Fedora guests (RHBZ#974489).
Here is a preliminary fix for this bug.
I'm running the test suite on this now.
Rich.