summaryrefslogtreecommitdiff
path: root/dh_testroot
blob: 6f9be362dc777dbf0c95e4787a5962f0f5f76ea8 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/usr/bin/perl -w
#
# Checks to make sure you are root.

BEGIN { push @INC, "debian", "/usr/share/debhelper" }
use Dh_Lib;
init();

if ($< != 0) {
	error("You must run this as root.");
}