File: stage4

package info (click to toggle)
base-config 0.33.2
  • links: PTS
  • area: main
  • in suites: potato
  • size: 472 kB
  • ctags: 171
  • sloc: sh: 777; perl: 538; makefile: 47; ansic: 27
file content (14 lines) | stat: -rwxr-xr-x 359 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/sh -e
. /usr/share/debconf/confmodule

# If ppp was started, ask if they want it stopped now, and act on result.
db_get base-config/use-ppp
if [ "$RET" = true ]; then
	db_fset isdefault base-config/stop-ppp true
	db_input medium base-config/stop-ppp || true
	db_go || true
	db_get base-config/stop-ppp
	if [ "$RET" = true ]; then
		poff || true
	fi
fi