aboutsummaryrefslogtreecommitdiffstats
path: root/bin/install-as-user
diff options
context:
space:
mode:
authorMatthew Somerville <matthew-github@dracos.co.uk>2016-06-07 11:18:38 +0100
committerMatthew Somerville <matthew-github@dracos.co.uk>2016-06-07 12:17:41 +0100
commitffbec97ee1b821119646df0ddd696c6317b9fa4b (patch)
tree3e0fe83d242976fb4cbfc904e78ad8af2ae1a1d5 /bin/install-as-user
parent660048ae58c9461b9816abdf06c5035626cc7e65 (diff)
Improve error handling of Vagrant installation.
It should now show a failure message on failure, rather than always show the success message, and not show a confusing error about general.yml if something went wrong before creating that file.
Diffstat (limited to 'bin/install-as-user')
-rwxr-xr-xbin/install-as-user8
1 files changed, 0 insertions, 8 deletions
diff --git a/bin/install-as-user b/bin/install-as-user
index 502cf0e3e..2730fe404 100755
--- a/bin/install-as-user
+++ b/bin/install-as-user
@@ -30,14 +30,6 @@ DB_NAME="fixmystreet"
# Check that the arguments we've been passed are sensible:
-IP_ADDRESS_FOR_HOST="$(dig +short $HOST)"
-
-if [ x = x"$IP_ADDRESS_FOR_HOST" ]
-then
- error_msg "The hostname $HOST didn't resolve to an IP address"
- exit 1
-fi
-
if ! id "$UNIX_USER" 2> /dev/null > /dev/null
then
error_msg "The user '$UNIX_USER' didn't exist."