diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2010-08-14 22:08:10 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2010-08-14 22:08:10 -0400 |
commit | c9079676e501edb2b68690a90438dd2af51467ea (patch) | |
tree | 0fa7a346827255931a0949f859717381694f78b2 /usr/sbin/pc-sysinstall | |
parent | 30b1013b05e3264045ebf95a9d0bd957de41bf1e (diff) | |
download | pfsense-c9079676e501edb2b68690a90438dd2af51467ea.zip pfsense-c9079676e501edb2b68690a90438dd2af51467ea.tar.gz |
Do not set hostname
Diffstat (limited to 'usr/sbin/pc-sysinstall')
-rwxr-xr-x | usr/sbin/pc-sysinstall/backend/functions-cleanup.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/sbin/pc-sysinstall/backend/functions-cleanup.sh b/usr/sbin/pc-sysinstall/backend/functions-cleanup.sh index b45c741..770cf5e 100755 --- a/usr/sbin/pc-sysinstall/backend/functions-cleanup.sh +++ b/usr/sbin/pc-sysinstall/backend/functions-cleanup.sh @@ -349,9 +349,9 @@ setup_hostname() mv ${FSMNT}/etc/rc.conf.new ${FSMNT}/etc/rc.conf # Set the hostname now - echo_log "Setting hostname: ${HOSTNAME}" - echo "hostname=\"${HOSTNAME}\"" >> ${FSMNT}/etc/rc.conf - sed -i -e "s|my.domain|${HOSTNAME} ${HOSTNAME}|g" ${FSMNT}/etc/hosts +# echo_log "Setting hostname: ${HOSTNAME}" +# echo "hostname=\"${HOSTNAME}\"" >> ${FSMNT}/etc/rc.conf +# sed -i -e "s|my.domain|${HOSTNAME} ${HOSTNAME}|g" ${FSMNT}/etc/hosts }; |