diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-11-22 20:19:08 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-12-13 21:22:13 +0100 |
commit | 835552511ef5edec94b567441251ada2a37ea333 (patch) | |
tree | 120f0cd18708151cbdfe34e74792e6d24c3da42e /Makefile.am | |
parent | 9ef4e1e5a2d0a9cc50406f1cae05f3918d6f0c2a (diff) |
core: hook up MountFlags= to the transient unit logic
This makes "systemd-run -p MountFlags=shared -t /bin/sh" work, by making
MountFlags= to the list of properties that may be accessed transiently.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 3bd8c29dd3..8f7b83f0ab 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1512,6 +1512,7 @@ tests += \ test-utf8 \ test-ellipsize \ test-util \ + test-mount-util \ test-cpu-set-util \ test-hexdecoct \ test-escape \ @@ -1890,6 +1891,12 @@ test_util_SOURCES = \ test_util_LDADD = \ libsystemd-shared.la +test_mount_util_SOURCES = \ + src/test/test-mount-util.c + +test_mount_util_LDADD = \ + libsystemd-shared.la + test_hexdecoct_SOURCES = \ src/test/test-hexdecoct.c |