summaryrefslogtreecommitdiffstats
path: root/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname
diff options
context:
space:
mode:
Diffstat (limited to 'target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname')
-rwxr-xr-xtarget/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname8
1 files changed, 4 insertions, 4 deletions
diff --git a/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname b/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname
index fcad428af..cf858ed62 100755
--- a/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname
+++ b/target/device/Atmel/atstk1002/target_skeleton/etc/init.d/S02hostname
@@ -2,7 +2,7 @@
PROGRAM=/bin/hostname
-echo -n "Setting hostname:"
+echo -n "Setting hostname: "
[ -x ${PROGRAM} ] || (echo " missing"; exit 0)
if [ -f /etc/hostname ]; then
@@ -12,10 +12,10 @@ else
fi
start() {
- if ${PROGRAM} "${HOST}" > /dev/null 2> /dev/null; then
- echo " '${HOST}'"
+ if ${PROGRAM} "${HOST}"; then
+ echo "'${HOST}'"
else
- echo " failed"
+ echo "failed"
exit 1
fi
}