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

use Debian::Debhelper::Dh_Lib;

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