File: biometryd.conf.in

package info (click to toggle)
biometryd 0.3.3-1
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 1,500 kB
  • sloc: cpp: 10,221; ansic: 191; python: 42; makefile: 20
file content (20 lines) | stat: -rw-r--r-- 488 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
description "biometryd mediates access to biometric devices"

start on android and started dbus

respawn
respawn limit 10 5

script
    # wait for Android properties system to be ready
    while [ ! -e /dev/socket/property_service ]; do sleep 0.1; done
    exec @CMAKE_INSTALL_FULL_BINDIR@/biometryd run
end script

post-stop script
    # do not respawn if exited due to missing configuration
    if [ "${EXIT_STATUS}" -eq 78 ]; then
        initctl stop
        exit 0
    fi
end script