diff options
author | seb <seb> | 2006-10-15 22:54:26 +0000 |
---|---|---|
committer | seb <seb> | 2006-10-15 22:54:26 +0000 |
commit | a984aa5092139dff5600cf9cbd6a91a1c4cf0eed (patch) | |
tree | c07e747f3fa7ecceb5516bfc8901b41207a5dcd9 /sysutils | |
parent | 604f694f75b734d3799fdd4630f9dedcfbd2fd96 (diff) | |
download | pkgsrc-a984aa5092139dff5600cf9cbd6a91a1c4cf0eed.tar.gz |
Fixed "test ==".
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/xentools20/distinfo | 5 | ||||
-rw-r--r-- | sysutils/xentools20/patches/patch-ax | 29 | ||||
-rw-r--r-- | sysutils/xentools20/patches/patch-ay | 40 | ||||
-rw-r--r-- | sysutils/xentools20/patches/patch-az | 13 |
4 files changed, 86 insertions, 1 deletions
diff --git a/sysutils/xentools20/distinfo b/sysutils/xentools20/distinfo index 4e51cce8ac0..4bb547da774 100644 --- a/sysutils/xentools20/distinfo +++ b/sysutils/xentools20/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.12 2005/09/16 18:14:49 bouyer Exp $ +$NetBSD: distinfo,v 1.13 2006/10/15 23:34:02 seb Exp $ SHA1 (xen-2.0.7-src.tgz) = 5317100e1e062961e3fee398fccbf023eb8f0337 RMD160 (xen-2.0.7-src.tgz) = db99fb49e592df7229d4d361c48bab1d23a1d725 @@ -21,3 +21,6 @@ SHA1 (patch-at) = 0964bc7dd23ff6fcd596d6a8564d9e3033f34563 SHA1 (patch-au) = a5eb7b34d43f57a3e1d4644e98ec571f30c56f5e SHA1 (patch-av) = 8de5c95093571670f3eedf71684634f999ebda54 SHA1 (patch-aw) = cb66cce69dc7cecb478702108f2905a22ffc3aed +SHA1 (patch-ax) = b4a0b8e06ff7ab6424d5340ee35d8f62243f8e3c +SHA1 (patch-ay) = a77b39b508d05a8276550bccff02e770d27c3f42 +SHA1 (patch-az) = 972708387e8f87a2283b123887d6062eabc8bd82 diff --git a/sysutils/xentools20/patches/patch-ax b/sysutils/xentools20/patches/patch-ax new file mode 100644 index 00000000000..f501fbd40e0 --- /dev/null +++ b/sysutils/xentools20/patches/patch-ax @@ -0,0 +1,29 @@ +$NetBSD: patch-ax,v 1.1 2006/10/15 23:34:02 seb Exp $ + +--- examples/network.orig 2005-08-03 23:57:57.000000000 +0000 ++++ examples/network +@@ -158,7 +158,7 @@ show_status () { + } + + op_start () { +- if [ "${bridge}" == "null" ] ; then ++ if [ "${bridge}" = "null" ] ; then + return + fi + +@@ -190,13 +190,13 @@ op_start () { + # Attach the real interface to the bridge. + add_to_bridge ${bridge} ${netdev} + +- if [ ${antispoof} == 'yes' ] ; then ++ if [ ${antispoof} = 'yes' ] ; then + antispoofing ${netdev} ${bridge} + fi + } + + op_stop () { +- if [ "${bridge}" == "null" ] ; then ++ if [ "${bridge}" = "null" ] ; then + return + fi + diff --git a/sysutils/xentools20/patches/patch-ay b/sysutils/xentools20/patches/patch-ay new file mode 100644 index 00000000000..bb6fc542f42 --- /dev/null +++ b/sysutils/xentools20/patches/patch-ay @@ -0,0 +1,40 @@ +$NetBSD: patch-ay,v 1.1 2006/10/15 23:34:02 seb Exp $ + +--- vnet/examples/network-vnet.orig 2005-08-03 23:57:58.000000000 +0000 ++++ vnet/examples/network-vnet +@@ -154,7 +154,7 @@ vnet_insert () { + break + fi + done +- if [ "${mod_obj}" == "" ] ; then ++ if [ "${mod_obj}" = "" ] ; then + return + fi + if lsmod | grep -q ${module} ; then +@@ -166,7 +166,7 @@ vnet_insert () { + } + + op_start () { +- if [ "${bridge}" == "null" ] ; then ++ if [ "${bridge}" = "null" ] ; then + return + fi + # Create the bridge and give it the interface IP addresses. +@@ -179,7 +179,7 @@ op_start () { + brctl addif ${bridge} ${netdev} + fi + +- if [ ${antispoof} == 'yes' ] ; then ++ if [ ${antispoof} = 'yes' ] ; then + antispoofing ${netdev} ${bridge} + fi + +@@ -187,7 +187,7 @@ op_start () { + } + + op_stop () { +- if [ "${bridge}" == "null" ] ; then ++ if [ "${bridge}" = "null" ] ; then + return + fi + # Remove the interface from the bridge. diff --git a/sysutils/xentools20/patches/patch-az b/sysutils/xentools20/patches/patch-az new file mode 100644 index 00000000000..b755a356973 --- /dev/null +++ b/sysutils/xentools20/patches/patch-az @@ -0,0 +1,13 @@ +$NetBSD: patch-az,v 1.1 2006/10/15 23:34:02 seb Exp $ + +--- examples/vif-bridge.orig 2005-08-03 23:57:57.000000000 +0000 ++++ examples/vif-bridge +@@ -70,7 +70,7 @@ case $OP in + esac + + # Don't do anything if the bridge is "null". +-if [ "${bridge}" == "null" ] ; then ++if [ "${bridge}" = "null" ] ; then + exit + fi + |