]> Untitled Git - hvlinux.git/commitdiff
Fix invalid hostname setting
authorHugo Villeneuve <hugo@hugovil.com>
Mon, 25 Aug 2014 18:12:12 +0000 (14:12 -0400)
committerHugo Villeneuve <hugo@hugovil.com>
Mon, 24 Nov 2014 13:56:10 +0000 (08:56 -0500)
Use only host, not host.domain

config/acer-731/sysinfos
config/amd64/sysinfos
config/arm/sysinfos
config/hp-mini/sysinfos
config/m68k/sysinfos
config/merlion/sysinfos
config/sony-pcgz505/sysinfos
stage1/create-config-files

index 0f8b2eaf38b961a310780373a4ec26b451a3241a..6d076a855bf433718e001c8657c2955de996f3f6 100644 (file)
@@ -34,7 +34,7 @@ WIFI_SUPPORT="yes"
 # General network settings
 INTERFACES="eth0 wlan0"
 MACHINE_NAME="acer"
-DOMAIN="hugovil.com"
+DOMAIN="lan"
 LAN_NETWORK_MASK="192.168.1.0/24" # Utilise par sane in stage3
 
 # Network interface card eth0 settings
index b20247cd6fb3fad9db23074101eb38e9349e4a93..2c795f44ac408a4af5ff1e3e0cbaecd632e6d43b 100644 (file)
@@ -33,8 +33,8 @@ WIFI_SUPPORT="no"
 
 # General network settings
 INTERFACES="eth0"
-MACHINE_NAME="chambers64"
-DOMAIN="mongol.com"
+MACHINE_NAME="amd64"
+DOMAIN="lan"
 LAN_NETWORK_MASK="192.168.1.0/24" # Utilise par sane in stage3
 
 # Network interface card eth0 settings
index cfe6dbe21dd5c16f923ef688f009f75375487615..ec19d64d7d6b3e5a0cc0dbfca70b5871fd646dd3 100644 (file)
@@ -28,7 +28,7 @@ MACHINE_ARCHITECTURE=""
 # General network settings
 INTERFACES="eth0"
 MACHINE_NAME="arm"
-DOMAIN="mongol.com"
+DOMAIN="lan"
 LAN_NETWORK_MASK="192.168.1.0/24" # Utilise par sane in stage3
 
 # Network interface card eth0 settings
index ea1faf1aadd5dfa42cd45684dfb88d1c61d872ee..0edaf7198ba69343edfe78e44fe3a8699ad199c2 100644 (file)
@@ -28,8 +28,8 @@ B43_LPPHY="yes"
 
 # General network settings
 INTERFACES="eth0 wlan0"
-MACHINE_NAME="gresimuth"
-DOMAIN="mongol.com"
+MACHINE_NAME="hp-mini"
+DOMAIN="lan"
 LAN_NETWORK_MASK="192.168.1.0/24" # Utilise par sane in stage3
 
 # Network interface card eth0 settings
index e02692f3eed990ac2bae0ed0e7e10475c47088b0..ffc8bb28702c23eedb2b6986e2581b0d40c601ee 100644 (file)
@@ -27,8 +27,8 @@ MACHINE_ARCHITECTURE=""
 
 # General network settings
 INTERFACES="eth0"
-MACHINE_NAME="arm"
-DOMAIN="mongol.com"
+MACHINE_NAME="m68k"
+DOMAIN="lan"
 LAN_NETWORK_MASK="192.168.1.0/24" # Utilise par sane in stage3
 
 # Network interface card eth0 settings
index e67a502b8114358189480e289ea3052a4ae37694..35d08e60a97265e0ad32dd0eedc301617193164f 100644 (file)
@@ -28,8 +28,8 @@ B43_LPPHY="no"
 
 # General network settings
 INTERFACES="eth0 wlan0"
-MACHINE_NAME="gresimuth"
-DOMAIN="mongol.com"
+MACHINE_NAME="merlion"
+DOMAIN="lan"
 LAN_NETWORK_MASK="192.168.1.0/24" # Utilise par sane in stage3
 
 # Network interface card eth0 settings
index 36b2f52b7931bdc6d1ddd963e484b32b25ec4d8d..65b6b8ca00a0080c4c0250eb457db11380ee3842 100644 (file)
@@ -7,7 +7,7 @@ INST_TYPE="workstation"
 HVL_TARGET="x86"
 MAKEJOBS=1
 
-# Destination path where to install new Linux-HV system. This is usually where
+  Destination path where to install new Linux-HV system. This is usually where
 # you have mounted your new LFS partition, but it can also be any directory.
 # This is relevant only for stage 0 and 1.
 LFS="/mnt/stockage/hvlinux-hp-mini"
@@ -28,8 +28,8 @@ B43_LPPHY="yes"
 
 # General network settings
 INTERFACES="eth0 wlan0"
-MACHINE_NAME="gresimuth"
-DOMAIN="mongol.com"
+MACHINE_NAME="sony"
+DOMAIN="lan"
 LAN_NETWORK_MASK="192.168.1.0/24" # Utilise par sane in stage3
 
 # Network interface card eth0 settings
index e65c544e8131ab96d41ccefbf64e49da3861c449..043f171093e3137fa486d373b16295b49aae1be1 100755 (executable)
@@ -242,7 +242,7 @@ echo "Creating /etc/shutdown.allow"
 echo "${REGUSER}" > ${LFS}/etc/shutdown.allow
 
 # Hostname
-echo "${MACHINE_NAME}.${DOMAIN}" > ${LFS}/etc/hostname
+echo "${MACHINE_NAME}" > ${LFS}/etc/hostname
 chmod 644 ${LFS}/etc/hostname
 
 echo "127.0.0.1 localhost ${MACHINE_NAME}" > ${LFS}/etc/hosts