search for: 4f2b55822

Displaying 5 results from an estimated 5 matches for "4f2b55822".

2019 Apr 18
2
[PATCH] appliance: Remove /etc/dhcp/dhclient-enter-hooks.d/resolved.
.... That won't work because systemd is not used inside the appliance. See: https://bugs.launchpad.net/ubuntu/+source/supermin/+bug/1824236 Thanks: Ioanna Alifieraki --- appliance/init | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/appliance/init b/appliance/init index 4f2b55822..b1c4d09ea 100755 --- a/appliance/init +++ b/appliance/init @@ -122,7 +122,9 @@ ip link set dev lo up if test "$guestfs_network" = 1; then iface=$(ls -I all -I default -I lo /proc/sys/net/ipv4/conf) - touch /etc/fstab # Workaround for Ubuntu. + # Two workarounds for Ubuntu...
2019 Apr 18
0
Re: [PATCH] appliance: Remove /etc/dhcp/dhclient-enter-hooks.d/resolved.
...de the > appliance. See: > > https://bugs.launchpad.net/ubuntu/+source/supermin/+bug/1824236 > > Thanks: Ioanna Alifieraki > --- > appliance/init | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > > diff --git a/appliance/init b/appliance/init > index 4f2b55822..b1c4d09ea 100755 > --- a/appliance/init > +++ b/appliance/init > @@ -122,7 +122,9 @@ ip link set dev lo up > > if test "$guestfs_network" = 1; then > iface=$(ls -I all -I default -I lo /proc/sys/net/ipv4/conf) > - touch /etc/fstab # Workaround for Ubuntu...
2019 Apr 18
2
Re: [PATCH] appliance: Remove /etc/dhcp/dhclient-enter-hooks.d/resolved.
...; https://bugs.launchpad.net/ubuntu/+source/supermin/+bug/1824236 > > > > Thanks: Ioanna Alifieraki > > --- > > appliance/init | 4 +++- > > 1 file changed, 3 insertions(+), 1 deletion(-) > > > > diff --git a/appliance/init b/appliance/init > > index 4f2b55822..b1c4d09ea 100755 > > --- a/appliance/init > > +++ b/appliance/init > > @@ -122,7 +122,9 @@ ip link set dev lo up > > > > if test "$guestfs_network" = 1; then > > iface=$(ls -I all -I default -I lo /proc/sys/net/ipv4/conf) > > - touch /et...
2018 May 24
1
[PATCH] daemon: Move creating of LVM_SYSTEM_DIR into the appliance/init script.
This patch reworks how we start up LVM and lvmetad. It fixes the problem we had converting a guest which had a peculiar LVM configuration: https://bugzilla.redhat.com/show_bug.cgi?id=1581810#c14 However please note I have NOT yet tested it fully. Rich.
2018 May 24
2
[PATCH v2] daemon: Move lvmetad to early in the appliance boot process.
...e. --- appliance/init | 11 +++++++- daemon/daemon.h | 4 --- daemon/guestfsd.c | 8 ------ daemon/lvm-filter.c | 75 +++++++++-------------------------------------------- 4 files changed, 22 insertions(+), 76 deletions(-) diff --git a/appliance/init b/appliance/init index 6a61a8d6e..4f2b55822 100755 --- a/appliance/init +++ b/appliance/init @@ -133,9 +133,17 @@ fi # Scan for MDs but don't run arrays unless all expected drives are present mdadm -As --auto=yes --no-degraded +# Set up a clean LVM environment. +# Empty LVM configuration file means "all defaults". +mkdir -p...