You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/net-dialup/pppconfig/files/pppconfig

10 lines
219 B

#!/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