diff options
author | Roy Marples <roy@marples.name> | 2007-07-13 00:04:20 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-07-13 00:04:20 +0000 |
commit | cffbaa6c4e90835cf50be79ac304cccf27605b39 (patch) | |
tree | 6e80b33f3254274f987f47f3c57d7335a278f64d /init.d.Linux | |
parent | 639024a04a34dea5e32812ce7c1e9e6f0b5f7e5c (diff) |
Use echo instead of touch - saves on forking
Diffstat (limited to 'init.d.Linux')
-rwxr-xr-x | init.d.Linux/consolefont | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/init.d.Linux/consolefont b/init.d.Linux/consolefont index 33d5676a..01f4d039 100755 --- a/init.d.Linux/consolefont +++ b/init.d.Linux/consolefont @@ -78,7 +78,7 @@ start() { cp "${font}" "${RC_LIBDIR}"/console echo "$(basename "${font}")" > "${RC_LIBDIR}"/console/font if [ "${UNICODE}" = "yes" ] ; then - touch "${RC_LIBDIR}"/console/unicode + echo > "${RC_LIBDIR}"/console/unicode else rm -f "${RC_LIBDIR}"/console/unicode fi |