File: postinst

package info (click to toggle)
fdm 1.6-3
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,612 kB
  • ctags: 1,526
  • sloc: ansic: 14,941; yacc: 1,976; sh: 540; makefile: 245; awk: 146
file content (8 lines) | stat: -rw-r--r-- 184 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
#! /bin/sh
set -e

#DEBHELPER#
if ! getent 'passwd' 'debianfdm' > /dev/null ; then
  adduser --quiet --system --no-create-home --disabled-login --disabled-password debianfdm
fi
exit 0