search for: b25ea26

Displaying 4 results from an estimated 4 matches for "b25ea26".

2014 Feb 05
2
[PATCH] appliance/init: provide a symlink /var/lock
Provide /var/lock as symlink to /run/lock, as it might be used by applications. --- appliance/init | 1 + 1 file changed, 1 insertion(+) diff --git a/appliance/init b/appliance/init index b25ea26..aac3f5a 100755 --- a/appliance/init +++ b/appliance/init @@ -32,6 +32,7 @@ mount -t sysfs /sys /sys mkdir -p /run mount -t tmpfs -o "nosuid,size=20%,mode=0755" tmpfs /run mkdir -p /run/lock +ln -s ../run/lock /var/lock # devtmpfs is required since udev 176 mount -t devtmpfs /dev /...
2014 Jan 23
4
[PATCH] appliance: Disable ipv6 in the appliance because qemu usernet is ipv4 only
Signed-off-by: Olaf Hering <olaf@aepfle.de> --- Untested in this environment. appliance/init | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/appliance/init b/appliance/init index b25ea26..cc8c978 100755 --- a/appliance/init +++ b/appliance/init @@ -71,6 +71,10 @@ for f in /sys/block/{h,s,ub,v}d*/queue/scheduler; do echo noop > $f; done # Update the system clock. hwclock -u -s +# Disable ipv6 because host names resolve to ipv4 and ipv6 +# Resolver may prefer ipv6 and qemu use...
2014 Jan 24
0
Re: [PATCH] appliance: Disable ipv6 in the appliance because qemu usernet is ipv4 only
...Jan 23, 2014 at 11:44:52PM +0100, Olaf Hering wrote: > Signed-off-by: Olaf Hering <olaf@aepfle.de> > --- > > Untested in this environment. > > appliance/init | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/appliance/init b/appliance/init > index b25ea26..cc8c978 100755 > --- a/appliance/init > +++ b/appliance/init > @@ -71,6 +71,10 @@ for f in /sys/block/{h,s,ub,v}d*/queue/scheduler; do echo noop > $f; done > # Update the system clock. > hwclock -u -s > > +# Disable ipv6 because host names resolve to ipv4 and ipv6 >...
2014 Feb 05
0
Re: [PATCH] appliance/init: provide a symlink /var/lock
On Wed, Feb 05, 2014 at 11:43:51AM +0100, Pino Toscano wrote: > Provide /var/lock as symlink to /run/lock, as it might be used by > applications. > --- > appliance/init | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/appliance/init b/appliance/init > index b25ea26..aac3f5a 100755 > --- a/appliance/init > +++ b/appliance/init > @@ -32,6 +32,7 @@ mount -t sysfs /sys /sys > mkdir -p /run > mount -t tmpfs -o "nosuid,size=20%,mode=0755" tmpfs /run > mkdir -p /run/lock > +ln -s ../run/lock /var/lock Do we need the .. in that path...