blob: 606300f2026b72e494d6597efc9cb7c5f18c603a (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# Since I don't feel like installing whiptail, we need to wrap this app
PPPCONFIG="/usr/sbin/pppconfig.real"
if [ -x ${PPPCONFIG} ]; then
$PPPCONFIG --dialog
else
echo "Error starting $PPPCONFIG"
exit 1
fi
|