File: preinst

package info (click to toggle)
usbauth-notifier 1.0.4-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 200 kB
  • sloc: ansic: 382; sh: 33; makefile: 29
file content (20 lines) | stat: -rwxr-xr-x 308 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/bin/sh

set -e

# source debconf library
. /usr/share/debconf/confmodule

if ! getent group usbauth>/dev/null; then
    addgroup --system --quiet usbauth || true
fi

if ! getent group usbauth-notifier>/dev/null; then
    addgroup --system --quiet usbauth-notifier || true
fi

#DEBHELPER#

db_stop

exit 0