diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-06-22 13:08:48 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-06-22 13:08:48 +0200 |
commit | b0193f1c1f1540bfccbdca02df82669b9308e4e2 (patch) | |
tree | c23e22e1857d73f7faff35ab1569a2070bac1797 /Makefile.am | |
parent | 03658d4fd66d5d0ccce643cef92185ec38b0e575 (diff) |
systemctl: automatically turn paths and unescaped unit names into proper unit names
This makes sure that
systemctl status /home
is implicitly translated to:
systemctl status /home.mount
Similar, /dev/foobar becomes dev-foobar.device.
Also, all characters that cannot be part of a unit name are implicitly
escaped.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index e1e02b7286..276c2265d6 100644 --- a/Makefile.am +++ b/Makefile.am @@ -906,7 +906,8 @@ noinst_PROGRAMS += \ test-env-replace \ test-strv \ test-install \ - test-watchdog + test-watchdog \ + test-unit-name TESTS += \ test-job-type \ @@ -955,6 +956,12 @@ test_hostname_SOURCES = \ test_hostname_LDADD = \ libsystemd-core.la +test_unit_name_SOURCES = \ + src/test/test-unit-name.c + +test_unit_name_LDADD = \ + libsystemd-core.la + test_daemon_SOURCES = \ src/test/test-daemon.c |