diff --git a/plogical/vhost.py b/plogical/vhost.py index 7a9c4fbb5..4bf45dd18 100755 --- a/plogical/vhost.py +++ b/plogical/vhost.py @@ -50,7 +50,7 @@ class vhost: if os.path.exists("/etc/lsb-release"): command = '/usr/sbin/adduser --no-create-home --home ' + path + ' --disabled-login --gecos "" ' + virtualHostUser else: - command = "adduser " + virtualHostUser + " -M -d " + path + command = "/usr/sbin/adduser " + virtualHostUser + " -M -d " + path ProcessUtilities.executioner(command)