debuggers.hg
changeset 4599:ec106abf799e
bitkeeper revision 1.1159.258.102 (42642814jW88x6oBUhJL6cOEJiTYjA)
Add a check for the 'ip' iproute tools in the install script.
Suggested by Sam Johnston [samjie@gmail.com]
Signed-off-by: ian@xensource.com
Add a check for the 'ip' iproute tools in the install script.
Suggested by Sam Johnston [samjie@gmail.com]
Signed-off-by: ian@xensource.com
author | iap10@freefall.cl.cam.ac.uk |
---|---|
date | Mon Apr 18 21:35:16 2005 +0000 (2005-04-18) |
parents | fde01e3e4b45 |
children | 24775547c56a b07029dd30fa |
files | .rootkeys tools/check/check_iproute |
line diff
1.1 --- a/.rootkeys Mon Apr 18 21:29:44 2005 +0000 1.2 +++ b/.rootkeys Mon Apr 18 21:35:16 2005 +0000 1.3 @@ -376,6 +376,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:16 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 +