Displaying 8 results from an estimated 8 matches for "findcommand".
Did you mean:
find_command
2006 Nov 01
1
Bug#396477: network-bridge script exits prematurely
...come
from ? The 2.6.18.1 xen-patched kernel doesn't have the string
netloop in there anywhere) the script exits right there.
The following patch fixes it:
--- network-bridge.ORIG 2006-10-08 19:04:48.000000000 +0200
+++ network-bridge 2006-11-01 00:13:36.000000000 +0100
@@ -59,7 +59,7 @@
findCommand "$@"
evalVariables "$@"
-modprobe netloop > /dev/null 2>&1
+modprobe netloop > /dev/null 2>&1 || true
vifnum=${vifnum:-$(ip route list | awk '/^default / { print $NF }' | sed 's/^[^0-9]*//')}
vifnum=${vifnum:-0}
Mike.
2009 Jun 10
0
Bug#532603: xen-utils-3.2-1: incorrectly calls network-script
...p:
(network-script 'network-camp netdev=eth0 bridge=xenbr0')
/etc/xen/scripts/network-camp is the following simple script:
--------------- begin script -----------
#!/bin/bash
dir=$(dirname "$0")
. "$dir/xen-script-common.sh"
. "$dir/xen-network-common.sh"
findCommand "$@"
evalVariables "$@"
echo $command
--------------- end script -----------
This minimal configuration shows it is called twice with command=start
on "/etc/init.d/xen start".
This is not a big problem as the default scripts are idempotent, but
it does make writing...
2003 Jun 25
1
help with compiling on Mac OSX
...yes
checking for dlopen... no
checking for dlopen in -ldl... no
configure: error: OpenSSL depends on libdl.
I don't really know what it means. I'm guessing it has to do with the fact that i'm missing zlib?
In the manual, it says to download zlib with Fink. I've got fink and the findcommander (GUI fink),
but zlib isn't in the list of packages (all the other ones like openssl i've installed thru fink). can
someone help me download it using the command line?
or if someone has a macbinary to share, i would greatly appreciate it.
thanks!
Arthur
Tinc: Discussion list a...
2012 Jul 29
0
Xen networking experiment (with custom scripts and OpenVSwitch)
...functions are initialized. The checklog() and
logmsg() functions take care of logging at the requested loglevel (set
in xen.conf). This is different from line 4; logmsg is a function that
logs to the console, syslog, or a file (xen.conf).
The sigerr(), fatal(), success(), xenstore_read_default(),
findCommand() and evalVariables() functions are modified versions of the
same functions in Xen''s xen-script-common.sh file.
I added line 191-198 for debugging, rather than calling the actual
commands they fake their execution and only add a log entry. That''s why
they are commented out.
The...
2011 Aug 03
0
openvswitch on xen 4.x
...idge
#
# status:
# Print addresses, interfaces
#
#============================================================================
dir=$(dirname "$0")
. "$dir/logging.sh"
. "$dir/xen-script-common.sh"
. "$dir/xen-network-common.sh"
. "$dir/locking.sh"
findCommand "$@"
evalVariables "$@"
netdev=${netdev:-eth0}
bridge=${bridge:-ovs0}
addr=`ip addr show dev ${netdev} | egrep ''^ *inet'' | sed -e ''s/ *inet
//'' -e ''s/ .*//''`
if [ -n "$addr" ]; then
echo "Invalid device:...
2012 Jul 30
3
Xen networking disconnect
...functions are initialized. The checklog() and
logmsg() functions take care of logging at the requested loglevel (set
in xen.conf). This is different from line 4; logmsg is a function that
logs to the console, syslog, or a file (xen.conf).
The sigerr(), fatal(), success(), xenstore_read_default(),
findCommand() and evalVariables() functions are modified versions of the
same functions in Xen''s xen-script-common.sh file.
I added line 191-198 for debugging, rather than calling the actual
commands they fake their execution and only add a log entry. That''s why
they are commented out.
The...
2006 Jul 07
7
[PATCH] xenconsole fix
xenconsole fix. reference of tty->count in xencons_close() is racy.
It must be protected by tty_sem semaphore like con_close() in
drivers/char/vt.c
--
yamahata
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel
2013 Oct 21
36
[PATCH 0 of 5 V3] Remus/Libxl: Network buffering support
This patch series adds support for network buffering in the Remus
codebase in libxl.
Changes in V3:
[1/5] Fix redundant checks in configure scripts
(based on Ian Campbell''s suggestions)
[2/5] Introduce locking in the script, during IFB setup.
Add xenstore paths used by netbuf scripts
to xenstore-paths.markdown
[3/5] Hotplug scripts setup/teardown invocations are now