diff options
Diffstat (limited to 'testing/dbus-core/dbus.install')
-rw-r--r-- | testing/dbus-core/dbus.install | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/testing/dbus-core/dbus.install b/testing/dbus-core/dbus.install deleted file mode 100644 index f1ffd61a8..000000000 --- a/testing/dbus-core/dbus.install +++ /dev/null @@ -1,23 +0,0 @@ -post_install() { - getent group dbus >/dev/null || groupadd -g 81 dbus - getent passwd dbus >/dev/null || useradd -c 'System message bus' -u 81 -g dbus -d '/' -s /bin/false dbus - passwd -l dbus &>/dev/null -} - -post_upgrade() { - post_install - - # Make sure new rc script can shutdown running dbus - if [ -f run/dbus.pid -a -d run/dbus ]; then - mv run/dbus.pid run/dbus/pid - fi -} - -post_remove() { - if getent passwd dbus >/dev/null; then - userdel dbus - fi - if getent group dbus >/dev/null; then - groupdel dbus - fi -} |