[PATCH 1/2] Install DBus policy in /usr/share/dbus-1/system.d
by Jonas Bonn
The default location for DBus policy files should be
/usr/share/dbus-1/system.d and the corresponding directory under /etc
should be reserved for administrative changes to default/packaged
settings. This removes a dependency of connman on a populated /etc.
---
configure.ac | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/configure.ac b/configure.ac
index 4feccc08..3cdf4b29 100644
--- a/configure.ac
+++ b/configure.ac
@@ -230,9 +230,9 @@ AC_SUBST(DBUS_LIBS)
AC_ARG_WITH(dbusconfdir, AC_HELP_STRING([--with-dbusconfdir=PATH],
[path to D-Bus config directory]), [path_dbusconf=${withval}],
- [path_dbusconf="`$PKG_CONFIG --variable=sysconfdir dbus-1`"])
+ [path_dbusconf="`$PKG_CONFIG --variable=datadir dbus-1`"])
if (test -z "${path_dbusconf}"); then
- DBUS_CONFDIR="${sysconfdir}/dbus-1/system.d"
+ DBUS_CONFDIR="${datadir}/dbus-1/system.d"
else
DBUS_CONFDIR="${path_dbusconf}/dbus-1/system.d"
fi
--
2.14.1
4 years, 7 months
How can one specify what wired and wireless interfaces to use?
by KARBOWSKI Piotr
Hello,
I'd like to ask, how can one specify what interfaces should be used?
I see that I can start `connmand` with `-i` and `-I` switches and I
could use that to omit devices, but that's a bit problematic.
If I have two wireless cards, wlan0 and wlan1, how can I choose which to
use to connect? I'd like to connect with wlan0 to one network and with
wlan1 to another.
-- Piotr.
4 years, 7 months
[PATCH v2 0/3] add option to enable auto connection for roaming
by Christophe Ronco
Hi,
I need to auto-connect cellular services even if they are roaming.
So I added an option in main.conf to enable that (or not).
I don't know if this can be useful for other Connman users.
Best Regards,
Christophe Ronco
Christophe Ronco (3):
main: add option to enable auto connection for roaming services
service: implement option to enable auto connection for roaming
services
main.conf: document option to enable auto connection for roaming
services
doc/connman.conf.5.in | 5 +++++
src/main.c | 14 ++++++++++++++
src/main.conf | 5 +++++
3 files changed, 24 insertions(+)
--
2.7.4
4 years, 7 months