diff options
Diffstat (limited to 'dh_testroot')
-rwxr-xr-x | dh_testroot | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/dh_testroot b/dh_testroot deleted file mode 100755 index 6ce2a134..00000000 --- a/dh_testroot +++ /dev/null @@ -1,13 +0,0 @@ -#!/usr/bin/perl -w -# -# Checks to make sure you are root. - -BEGIN { push @INC, "debian", "/usr/share/debhelper" } -use Dh_Lib; -init(); - -# Test for uid = 0, not username of root, becuase -# some people rename root. -if ($< != 0) { - error("You must run this as root."); -} |