From 5b6d09ad29e4f1695689bd6b24d681c4f926ea4b Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Wed, 23 Apr 2014 20:56:10 +0200 Subject: Configured host can be a URL --- bin/deluser.sh | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'bin') diff --git a/bin/deluser.sh b/bin/deluser.sh index 84c8446ec..f12ec9032 100755 --- a/bin/deluser.sh +++ b/bin/deluser.sh @@ -58,6 +58,12 @@ if (empty($args['host'])) { else { _die("Specify a host name", true); } + + // host can be a URL like tls://192.168.12.44 + $host_url = parse_url($args['host']); + if ($host_url['host']) { + $args['host'] = $host_url['host']; + } } // connect to DB -- cgit v1.2.3