|
From: <abe...@us...> - 2014-11-04 21:01:12
|
Revision: 6799
http://sourceforge.net/p/astlinux/code/6799
Author: abelbeck
Date: 2014-11-04 21:01:04 +0000 (Tue, 04 Nov 2014)
Log Message:
-----------
consistency, use ':' where we previously used, echo -n ''
Modified Paths:
--------------
branches/1.0/package/dnsmasq/dnsmasq.init
branches/1.0/project/astlinux/target_skeleton/etc/init.d/network
branches/1.0/project/astlinux/target_skeleton/usr/bin/wall
Modified: branches/1.0/package/dnsmasq/dnsmasq.init
===================================================================
--- branches/1.0/package/dnsmasq/dnsmasq.init 2014-11-04 20:33:14 UTC (rev 6798)
+++ branches/1.0/package/dnsmasq/dnsmasq.init 2014-11-04 21:01:04 UTC (rev 6799)
@@ -226,7 +226,7 @@
fi
fi
- echo -n > /tmp/etc/resolv-static.conf
+ : > /tmp/etc/resolv-static.conf
for h in $DNS; do
get_numeric_ip_version "$h"
case $? in
Modified: branches/1.0/project/astlinux/target_skeleton/etc/init.d/network
===================================================================
--- branches/1.0/project/astlinux/target_skeleton/etc/init.d/network 2014-11-04 20:33:14 UTC (rev 6798)
+++ branches/1.0/project/astlinux/target_skeleton/etc/init.d/network 2014-11-04 21:01:04 UTC (rev 6799)
@@ -138,8 +138,8 @@
if [ -n "$IFRENAME" ]; then
#clear existing iftabs
- echo -n > /tmp/etc/iftab
- echo -n > /tmp/etc/iftab.init
+ : > /tmp/etc/iftab
+ : > /tmp/etc/iftab.init
#set COUNT
COUNT=10
@@ -201,7 +201,7 @@
SYS_gen_etc_hosts > /tmp/etc/hosts
- echo -n "" > /tmp/etc/ethers
+ : > /tmp/etc/ethers
if [ -f /stat/etc/ethers ]; then
cat /stat/etc/ethers >> /tmp/etc/ethers
Modified: branches/1.0/project/astlinux/target_skeleton/usr/bin/wall
===================================================================
--- branches/1.0/project/astlinux/target_skeleton/usr/bin/wall 2014-11-04 20:33:14 UTC (rev 6798)
+++ branches/1.0/project/astlinux/target_skeleton/usr/bin/wall 2014-11-04 21:01:04 UTC (rev 6799)
@@ -1,4 +1,3 @@
#!/bin/sh
-#wrapper script for wall
-#/dev/null everything for now
-echo -n ""
+# Null wrapper script for wall
+:
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|