File: user-setup-udeb.postinst

package info (click to toggle)
user-setup 1.95
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,184 kB
  • sloc: sh: 344; makefile: 2
file content (9 lines) | stat: -rw-r--r-- 115 bytes parent folder | download | duplicates (11)
1
2
3
4
5
6
7
8
9
#!/bin/sh
set -e
CODE=0
user-setup-ask /target || CODE="$?"
if [ "$CODE" = 30 ]; then
	exit 10
else
	exit $CODE
fi