diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-09-06 03:11:24 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-09-06 03:11:24 +0200 |
commit | 7d568925bda9797f611e36d1d00cd941701cb3c8 (patch) | |
tree | cb7a5ed9ed72bd1ab4bcb19975dca9d6d46fac5c /src/systemctl.c | |
parent | 35df8f27fae82c6f9e83d750ffa5e54733b16cf2 (diff) |
systemctl: make --version a little bit more verbose
Diffstat (limited to 'src/systemctl.c')
-rw-r--r-- | src/systemctl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/systemctl.c b/src/systemctl.c index c77f831eaa..627b9055ae 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -52,6 +52,7 @@ #include "shutdownd.h" #include "exit-status.h" #include "bus-errors.h" +#include "build.h" static const char *arg_type = NULL; static char **arg_property = NULL; @@ -4031,6 +4032,8 @@ static int systemctl_parse_argv(int argc, char *argv[]) { case ARG_VERSION: puts(PACKAGE_STRING); + puts(DISTRIBUTION); + puts(SYSTEMD_FEATURES); return 0; case 't': |