diff options
author | Lennart Poettering <lennart@poettering.net> | 2014-07-03 01:17:26 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2014-07-03 01:17:26 +0200 |
commit | 7f0d207d2c816e0a8cb2742b0a789911f7c99356 (patch) | |
tree | 148eea6477a079339c5ecfa1a03d7debe50fed17 /src/shared/util.h | |
parent | 8f6e22a1cafafb4e78e23c1998f23a997c1b294f (diff) |
sd-bus: support connecting to remote hosts, directly into containers
systemctl -H root@foobar:waldi
will now show a list of services running on container "waldi" on host
"foobar", using "root" for authenticating at "foobar".
Since entereing a container requires priviliges, this will only work
correctly for root logins.
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index 6d3791be7f..e23069c016 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -515,6 +515,8 @@ bool plymouth_running(void); bool hostname_is_valid(const char *s) _pure_; char* hostname_cleanup(char *s, bool lowercase); +bool machine_name_is_valid(const char *s) _pure_; + char* strshorten(char *s, size_t l); int terminal_vhangup_fd(int fd); |