summaryrefslogtreecommitdiff
path: root/dh_testroot
blob: 36577b29e019441190a182978ce166cc90a5e203 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh -e
#
# Checks to make sure you are root.

PATH=debian:$PATH:/usr/lib/debhelper
. dh_lib

if  [ "`whoami`" != root ]; then
	error "You must run this as root."
fi