diff options
author | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-06-10 09:48:56 -0300 |
---|---|---|
committer | Nicolás Reynolds <apoyosis@correo.inta.gob.ar> | 2011-06-10 09:48:56 -0300 |
commit | 1670991a46ef049eedd6ebcc0485bc671b28384d (patch) | |
tree | 83add3b56c95f8e40ec12fbaa78f9e0475f4dfc2 | |
parent | 27de5884859102fd18273cf7b743fa8c685f519f (diff) | |
parent | 054e8d38fe9e9cf842600fc23d725617ce3611ce (diff) |
Merge branch 'master' of https://projects.archlinux.org/git/initscripts
-rwxr-xr-x | network | 2 | ||||
-rw-r--r-- | rc.conf | 3 | ||||
-rwxr-xr-x | rc.sysinit | 4 |
3 files changed, 7 insertions, 2 deletions
@@ -32,7 +32,7 @@ network_up() { return 1 fi done - ip addr add $address/$netmask dev $interface || return 1 + ip addr add $address/$netmask broadcast ${broadcast:-+} dev $interface || return 1 ip route add default via $gateway || return 1 else dhcpcd $DHCPCD_ARGS $interface || return 1 @@ -65,12 +65,14 @@ HOSTNAME="myhost" # - interface: name of device (required) # - address: IP address (leave blank for DHCP) # - netmask: subnet mask (ignored for DHCP) +# - broadcast: broadcast address (ignored for DHCP) (optional) # - gateway: default route (ignored for DHCP) # # Static IP example # interface=eth0 # address=192.168.0.2 # netmask=255.255.255.0 +# broadcast=192.168.0.255 # gateway=192.168.0.1 # # DHCP example @@ -82,6 +84,7 @@ HOSTNAME="myhost" interface= address= netmask= +broadcast= gateway= # Setting this to "yes" will skip network shutdown. @@ -317,7 +317,9 @@ stat_busy "Removing Leftover Files" stat_done if [[ $HOSTNAME ]]; then - status "Setting Hostname: $HOSTNAME" hostname "$HOSTNAME" + stat_busy "Setting Hostname: $HOSTNAME" + echo $HOSTNAME > /proc/sys/kernel/hostname + stat_done fi stat_busy "Setting Locale: ${LOCALE:=en_US}" |