File: stage6

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 361 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

# Asks the user if they want to try again to install packages that failed to
# install. If so, returns true.
db_fset base-config/install-problem isdefault true
db_input critical base-config/install-problem || true
db_go || true
db_get base-config/install-problem
if [ "$RET" = true ]; then
	exit 0
else
	exit 1
fi