X-Git-Url: http://git.grml.org/?a=blobdiff_plain;f=sbin%2Fgrml-pptp-inode;h=abef0593e15c46d1ca48ea80856d97bdd323b8c7;hb=bc56d430ed4f7eb77355cd3db871d7a7078d051b;hp=2e6e5fa08ffec57ae362bb88bd6441bcce655cec;hpb=af7a30a5e458a4a8d46bd03aed355051b8147972;p=grml-network.git diff --git a/sbin/grml-pptp-inode b/sbin/grml-pptp-inode index 2e6e5fa..abef059 100755 --- a/sbin/grml-pptp-inode +++ b/sbin/grml-pptp-inode @@ -4,7 +4,6 @@ # Authors: grml-team (grml.org), (c) Andreas Gredler # Bug-Reports: see http://grml.org/bugs/ # License: This file is licensed under the GPL v2. -# Latest change: Sam Jän 26 00:12:46 CET 2008 [mika] ################################################################################ ################################################################################ @@ -15,10 +14,8 @@ export LANG=C -if [ "$UID" != 0 ]; then -# sudo $0 -# exit -echo foo +if [ $(id -ru) -ne 0 ] ; then + echo 1>&2 "Error: please run this script with uid 0 (root)." ; exit 1 fi if [ -z "$FORCE_OLD" ] ; then @@ -48,7 +45,7 @@ EOF echo "${VPNUSERNAME} XDSL ${VPNPASSWORD} *" >> /etc/ppp/pap-secrets chmod 0600 /etc/ppp/pap-secrets -echo -e "#!/bin/sh\nLANG=C\nVPNSERVER=\"${VPNSERVER}\"\n" > /etc/init.d/pptp +printf "#!/bin/sh\nLANG=C\nVPNSERVER=\"${VPNSERVER}\"\n" > /etc/init.d/pptp cat >> /etc/init.d/pptp << "EOF"