File: biometric-auth.postinst

package info (click to toggle)
biometric-authentication 0.9.61-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 1,040 kB
  • sloc: ansic: 8,332; python: 646; makefile: 345; xml: 232; sh: 170
file content (28 lines) | stat: -rw-r--r-- 1,028 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#!/bin/sh
set -e

#DEBHELPER#

if [ ! -f /etc/biometric-auth/biometric-drivers.conf ]; then
	mkdir -p /etc/biometric-auth
	cp /usr/share/biometric-auth/biometric-drivers.conf.template \
		/etc/biometric-auth/biometric-drivers.conf
fi

# Automatically added by dh_systemd_enable/10.7.2ubuntu2
# This will only remove masks created by d-s-h on package removal.
deb-systemd-helper unmask biometric-authentication.service >/dev/null || true

# was-enabled defaults to true, so new installations run enable.
if deb-systemd-helper --quiet was-enabled biometric-authentication.service; then
	# Enables the unit on first installation, creates new
	# symlinks on upgrades if the unit file has changed.
	deb-systemd-helper enable biometric-authentication.service >/dev/null || true
else
	# Update the statefile to add new symlinks (if any), which need to be
	# cleaned up on purge. Also remove old symlinks.
	deb-systemd-helper update-state biometric-authentication.service >/dev/null || true
fi
# End automatically added section

exit 0