File: accountsservice.prerm

package info (click to toggle)
accountsservice 0.6.37-3
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,648 kB
  • ctags: 1,236
  • sloc: ansic: 8,138; xml: 1,914; makefile: 305; sh: 220; perl: 42; sed: 16
file content (18 lines) | stat: -rw-r--r-- 473 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

set -e

get_pid() {
    [ -n "$1" ] || return 0
    [ -S /var/run/dbus/system_bus_socket ] || return 0

    dbus-send --system --dest=org.freedesktop.DBus --print-reply \
              /org/freedesktop/DBus org.freedesktop.DBus.GetConnectionUnixProcessID \
              string:$1 2>/dev/null | awk '/uint32/ {print $2}'
}

if [ "$1" = "remove" -a ! -d /run/systemd/system ]; then
    kill $(get_pid org.freedesktop.Accounts) 2>/dev/null || true
fi

#DEBHELPER#