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