[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] Add Gentoo handling to network-bridge. Based on patches
# HG changeset patch # User kaf24@xxxxxxxxxxxxxxxxxxxx # Node ID e579bef0d237a12d3d52e2e61a6d48632fe61aff # Parent e643fccb851bb5ef271057e02455661f4beff1bc Add Gentoo handling to network-bridge. Based on patches from Jon Mason and Anthony Liguori. diff -r e643fccb851b -r e579bef0d237 tools/examples/network-bridge --- a/tools/examples/network-bridge Wed Oct 5 13:10:49 2005 +++ b/tools/examples/network-bridge Wed Oct 5 13:14:04 2005 @@ -54,6 +54,17 @@ antispoof=${antispoof:-no} echo "*network $OP bridge=$bridge netdev=$netdev antispoof=$antispoof" >&2 + +# Gentoo doesn't have ifup/ifdown: define appropriate alternatives +which ifup >& /dev/null +if [ "$?" != 0 -a -e /etc/conf.d/net ]; then + ifup() { + /etc/init.d/net.$1 start + } + ifdown() { + /etc/init.d/net.$1 stop + } +fi # Usage: transfer_addrs src dst # Copy all IP addresses (including aliases) from device $src to device $dst. _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxx http://lists.xensource.com/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |