From b7d2e229adc2017d06b55a80da406c904ec25c69 Mon Sep 17 00:00:00 2001 From: Alexis Mousset Date: Fri, 26 Jun 2015 15:45:27 +0200 Subject: [PATCH] Fixes #6841: Add fqdn to /etc/hosts --- scripts/cleanbox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/cleanbox b/scripts/cleanbox index 187d1cd..094f99b 100755 --- a/scripts/cleanbox +++ b/scripts/cleanbox @@ -50,7 +50,7 @@ echo "${NET}.2 server.rudder.local server rudder" >> /etc/hosts i=2 for host in ${HOSTS} do - echo "${NET}.${i} ${host}" >> /etc/hosts + echo "${NET}.${i} ${host} ${host}.normation.com" >> /etc/hosts i=$((i+1)) done