diff options
author | kremlin <ian@kremlin.cc> | 2014-06-07 15:45:04 +0800 |
---|---|---|
committer | kremlin <ian@kremlin.cc> | 2014-06-07 15:45:04 +0800 |
commit | e1ab1483144fea7ca4191ed5d443cec9d86c3a67 (patch) | |
tree | fea4fe515b4a8f1beeb94c2e359d3bf2f2127047 | |
parent | e8c57a5d0424286741347516090b22935fa43ebb (diff) | |
download | systembsd-e1ab1483144fea7ca4191ed5d443cec9d86c3a67.tar systembsd-e1ab1483144fea7ca4191ed5d443cec9d86c3a67.tar.gz systembsd-e1ab1483144fea7ca4191ed5d443cec9d86c3a67.tar.bz2 systembsd-e1ab1483144fea7ca4191ed5d443cec9d86c3a67.tar.lz systembsd-e1ab1483144fea7ca4191ed5d443cec9d86c3a67.tar.xz systembsd-e1ab1483144fea7ca4191ed5d443cec9d86c3a67.tar.zst systembsd-e1ab1483144fea7ca4191ed5d443cec9d86c3a67.zip |
XML configs will be either compiled in (default) or installed (flagged), rm workarounds
-rw-r--r-- | hacks/hostnamed-dbus.conf | 10 | ||||
-rwxr-xr-x | hacks/punch_config.sh | 8 | ||||
-rwxr-xr-x | hacks/unpunch_config.sh | 7 |
3 files changed, 0 insertions, 25 deletions
diff --git a/hacks/hostnamed-dbus.conf b/hacks/hostnamed-dbus.conf deleted file mode 100644 index c84c0f3..0000000 --- a/hacks/hostnamed-dbus.conf +++ /dev/null @@ -1,10 +0,0 @@ -<!-- if i am in /etc/dbus-1/system.d/ you should probably delete me immediately --> - -<!DOCTYPE busconfig PUBLIC "-//freedesktop//DTD D-BUS Bus Configuration 1.0//EN" "http://www.freedesktop.org/standards/dbus/1.0/busconfig.dtd"> -<busconfig> - <policy context="default"> - <allow own="org.freedesktop.hostname1"/> - <allow send_destination="org.freedesktop.hostname1"/> - <allow receive_sender="org.freedesktop.hostname1"/> - </policy> -</busconfig> diff --git a/hacks/punch_config.sh b/hacks/punch_config.sh deleted file mode 100755 index 611250d..0000000 --- a/hacks/punch_config.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/bin/sh - -# sticks our config for hostnamed (which needs to use the system bus) -# in place. and restarts dbus-daemon will be replaced by a more elegant, -# not-hack in the future - -cp $(dirname "$(readlink -f "$0")")/hostnamed-dbus.conf /etc/dbus-1/system.d/hostnamed-dbus.conf -/etc/rc.d/dbus_daemon reload >> /dev/null diff --git a/hacks/unpunch_config.sh b/hacks/unpunch_config.sh deleted file mode 100755 index 076c353..0000000 --- a/hacks/unpunch_config.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -# unsticks our config for hostnamed (which needs to use the system bus) -# and restarts dbus - -rm /etc/dbus-1/system.d/hostnamed-dbus.conf -/etc/rc.d/dbus_daemon reload >> /dev/null |