/lib/live/debconfig/0220-dbus is in live-debconfig 4.0~alpha31-1.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 | #!/bin/sh
## live-debconfig(7) - System Configuration Components
## Copyright (C) 2006-2013 Daniel Baumann <mail@daniel-baumann.ch>
##
## This program comes with ABSOLUTELY NO WARRANTY; for details see COPYING.
## This is free software, and you are welcome to redistribute it
## under certain conditions; see COPYING for details.
set -e
DEBCONF_SYSTEMRC="/var/lib/live/debconfig/systemrc"
export DEBCONF_SYSTEMRC
. /usr/share/debconf/confmodule
if [ ! -e /lib/systemd/systemd ]
then
# System does not use systemd
exit 0
fi
if [ ! -e /usr/bin/dbus-daemon ]
then
# dbus not installed
exit 0
fi
Defaults ()
{
_OOMSCOREADJUST="${_OOMSCOREADJUST:-true}"
}
db_get live-debconfig/dbus/oomscoreadjust
_OOMSCOREADJUST="${RET}" # boolean
Defaults
db_set live-debconfig/dbus/oomscoreadjust "${_OOMSCOREADJUST}"
db_fset live-debconfig/dbus/oomscoreadjust seen false
db_settitle live-debconfig/title
db_input high live-debconfig/dbus/oomscoreadjust || true
db_go
db_get live-debconfig/dbus/oomscoreadjust
_OOMSCOREADJUST="${RET}" # boolean
db_stop
case "${_OOMSCOREADJUST}" in
false)
# Updating service file
sed -e 's|^ *OOMScoreAdjust|\#&|' /lib/systemd/system/dbus.service > /etc/systemd/system/dbus.service
;;
true)
# Reenable sulogin
rm -f /etc/systemd/system/dbus.service
;;
esac
|