dbd24b7a91
Begged for by: jkh
8 lines
105 B
Bash
8 lines
105 B
Bash
#!/bin/sh
|
|
|
|
if [ "`id -u`" != "0" ]; then
|
|
echo "This package must be added as root.";
|
|
exit 1;
|
|
fi
|
|
exit 0
|