{
	if ( $InternetAccessType =~ /adsl/i ) {
		$OUT .= q{
#!/bin/bash
#
# internet       Bring up/down internet connection (e.g. adsl)
#
# chkconfig: 2345 12 88
# description: Activates/Deactivates the internet interface

	case "$1" in
		start)
		echo -n "Starting internet connection: "
		/etc/sysconfig/network-scripts/net-cnx-up
		touch /var/lock/subsys/internet
		echo -n internet
		echo
		;;
	stop)
		echo -n "Stopping adsl connection: "
		/etc/sysconfig/network-scripts/net-cnx-down
		echo -n internet
		echo
		rm -f /var/lock/subsys/internet
		;;
	restart)
		$0 stop
		echo -n "Waiting 10 sec before restarting internet connection."
		sleep 10
		$0 start
		;;
	status)
		;;
	*)
	echo "Usage: internet \{start|stop|status|restart\}"
	exit 1

	esac
		};
	}

}