[systemd-commits] 3 commits - Makefile.am man/systemctl.xml
Lennart Poettering
lennart at kemper.freedesktop.org
Fri Nov 8 16:53:54 CET 2013
Makefile.am | 22 +++++++++++++++++++++-
man/systemctl.xml | 15 +++++++--------
2 files changed, 28 insertions(+), 9 deletions(-)
New commits:
commit 1290d0fc5f7ffb433e403068c6c60394033e9ba8
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Nov 8 16:53:00 2013 +0100
man: update systemctl man page to mentioned --machine=
diff --git a/man/systemctl.xml b/man/systemctl.xml
index 7f1e98f..d842b78 100644
--- a/man/systemctl.xml
+++ b/man/systemctl.xml
@@ -458,20 +458,19 @@ systemctl start foo
<listitem>
<para>Execute the operation remotely. Specify a hostname, or
- username and hostname separated by <literal>@</literal>, to connect to. This
- will use SSH to talk to the remote systemd
+ username and hostname separated by <literal>@</literal>, to
+ connect to. This will use SSH to talk to the remote systemd
instance.</para>
</listitem>
</varlistentry>
<varlistentry>
- <term><option>-P</option></term>
- <term><option>--privileged</option></term>
+ <term><option>-M</option></term>
+ <term><option>--machine=</option></term>
- <listitem>
- <para>Acquire privileges via PolicyKit before executing the
- operation.</para>
- </listitem>
+ <listitem><para>Execute the operation on a local
+ container. Specify a container name to connect
+ to.</para></listitem>
</varlistentry>
<varlistentry>
commit 9070a9c1030c65bc181f1d00e7226167508059c4
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Nov 8 16:52:42 2013 +0100
build-sys: add make check-api-unused
diff --git a/Makefile.am b/Makefile.am
index 53685c1..a67f18b 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -4578,3 +4578,23 @@ check-api-docs: $(lib_LTLIBRARIES) man
echo "⣠Symbol $$symbol() lacks documentation." ; \
fi ; \
done
+
+OBJECT_VARIABLES:=$(filter %_OBJECTS,$(.VARIABLES))
+ALL_OBJECTS:=$(foreach v,$(OBJECT_VARIABLES),$($(v)))
+
+defined: $(ALL_OBJECTS)
+ $(AM_V_GEN)for f in $(ALL_OBJECTS) ; do \
+ nm -g --undefined-only `echo $(builddir)/"$$f" | sed -e 's,\([^/]*\).lo$$,.libs/\1.o,'` ; \
+ done | cut -c 20- | cut -d @ -f 1 | sort -u > $(builddir)/undefined
+
+undefined:
+ $(AM_V_GEN)for f in $(ALL_OBJECTS) ; do \
+ nm -g --defined-only `echo $(builddir)/"$$f" | sed -e 's,\([^/]*\).lo$$,.libs/\1.o,'` ; \
+ done | cut -c 20- | cut -d @ -f 1 | sort -u > $(builddir)/defined
+
+CLEANFILES += \
+ defined \
+ undefined
+
+check-api-unused: defined undefined
+ diff -u undefined defined | grep ^+ | grep -v ^+++ | cut -c2-
commit 862e8bf8c63bd74b915798677f1894da11b2be60
Author: Lennart Poettering <lennart at poettering.net>
Date: Fri Nov 8 16:52:24 2013 +0100
build-sys: install busctl
diff --git a/Makefile.am b/Makefile.am
index ffb10d6..53685c1 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -2020,7 +2020,7 @@ tests += \
test-bus-objects \
test-event
-noinst_PROGRAMS += \
+bin_PROGRAMS += \
busctl
test_bus_marshal_SOURCES = \
More information about the systemd-commits
mailing list