File: di-utils-reboot.postinst

package info (click to toggle)
debian-installer-utils 1.45etch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 516 kB
  • ctags: 18
  • sloc: sh: 581; ansic: 106; makefile: 72
file content (11 lines) | stat: -rwxr-xr-x 216 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -e

. /usr/share/debconf/confmodule
db_input critical di-utils-reboot/really_reboot || true
db_go || true
db_get di-utils-reboot/really_reboot

if [ "$RET" = true ]; then
	/lib/debian-installer/exit
fi