debuggers.hg
changeset 4600:24775547c56a
bitkeeper revision 1.1318 (4264283ce__gVUpQLdg5yGlZuF8vBw)
Merge freefall.cl.cam.ac.uk:/auto/groups/xeno/users/iap10/xeno-clone/xen-2.0-testing.bk
into freefall.cl.cam.ac.uk:/auto/groups/xeno/users/iap10/xeno-clone/xen-unstable.bk
Merge freefall.cl.cam.ac.uk:/auto/groups/xeno/users/iap10/xeno-clone/xen-2.0-testing.bk
into freefall.cl.cam.ac.uk:/auto/groups/xeno/users/iap10/xeno-clone/xen-unstable.bk
author | iap10@freefall.cl.cam.ac.uk |
---|---|
date | Mon Apr 18 21:35:56 2005 +0000 (2005-04-18) |
parents | a1f760a94785 ec106abf799e |
children | cc683618c526 |
files | .rootkeys tools/check/check_iproute |
line diff
1.1 --- a/.rootkeys Mon Apr 18 21:30:15 2005 +0000 1.2 +++ b/.rootkeys Mon Apr 18 21:35:56 2005 +0000 1.3 @@ -511,6 +511,7 @@ 4124b307vHLUWbfpemVefmaWDcdfag tools/che 1.4 4124b307jt7T3CHysgl9LijNHSe1tA tools/check/check_brctl 1.5 4124b307HDX972-zihuZWXB7R8Vd0w tools/check/check_curl_devel 1.6 4124b307P3bZBkTFm6r-3XTbf0phAA tools/check/check_curl_lib 1.7 +42642813SYRkwr07qVZ9eCI5QTZANg tools/check/check_iproute 1.8 4124b307u-FeKvFP9kZnh0rLV0XjGg tools/check/check_logging 1.9 4124b307tRTjLqzRy60QrUoqN2Fhuw tools/check/check_python 1.10 4124b307XdznSNCv97lrT3RpOdMM1A tools/check/check_twisted
2.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 2.2 +++ b/tools/check/check_iproute Mon Apr 18 21:35:56 2005 +0000 2.3 @@ -0,0 +1,10 @@ 2.4 +#!/bin/bash 2.5 +# CHECK-INSTALL 2.6 + 2.7 +function error { 2.8 + echo 'Check for iproute (ip addr) failed.' 2.9 + exit 1 2.10 +} 2.11 + 2.12 +ip addr list || error 2.13 +