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 0f8b2ea..6d076a8 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 b20247c..2c795f4 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 cfe6dbe..ec19d64 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 ea1faf1..0edaf71 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 e02692f..ffc8bb2 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 e67a502..35d08e6 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 36b2f52..65b6b8c 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 e65c544..043f171 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