blob: c704109411d54ffb16c11d1ee9a91fb6ad78ca19 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/bin/sh -e
#
# Checks to make sure you are root.
PATH=debian:$PATH:/usr/lib/debhelper
. dh_lib
# Test for uid = 0, not username of root, becuase
# some people rename root.
if [ "`id -u`" != 0 ]; then
error "You must run this as root."
fi
|