diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-22 19:27:18 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-01-22 19:27:18 +0100 |
commit | 3becf571f6137f47f15ac3dfcbb64c5a4f4b3852 (patch) | |
tree | 8b446cb5ed95bd078b2b7be13ae62c29e202d657 /package/base-files/src/etc | |
parent | f4704ae1ec6a30b3dde6424f317e5315757a65f0 (diff) | |
parent | c7b25f4c5726394f2cc57b924bb7913a3882255e (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/base-files/src/etc')
-rw-r--r-- | package/base-files/src/etc/init.d/boot | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/package/base-files/src/etc/init.d/boot b/package/base-files/src/etc/init.d/boot index ed55ccc88..df2c493d7 100644 --- a/package/base-files/src/etc/init.d/boot +++ b/package/base-files/src/etc/init.d/boot @@ -10,12 +10,10 @@ touch /var/log/lastlog touch /var/log/wtmp ln -s /tmp /var/tmp -echo 0 > /proc/sys/kernel/printk - HOSTNAME= [[ -s /etc/hostname ]] && HOSTNAME=$(cat /etc/hostname) HOSTNAME=${HOSTNAME%%.*} -echo ${HOSTNAME:=linux} >/proc/sys/kernel/hostname +echo ${HOSTNAME:=openadk} >/proc/sys/kernel/hostname chown 0:0 /tmp; chmod 1777 /tmp |