diff options
author | William Hubbs <williamh@gentoo.org> | 2011-10-24 21:04:23 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2011-10-24 21:34:57 -0500 |
commit | 0e5d3bfc530c4c6607e0f04ab7f24770070b9cc7 (patch) | |
tree | 4a30e3d6bb0db8cbef8458c68edfa356dd4b3722 /init.d/hwsetup | |
parent | remove spind (diff) | |
download | livecd-tools-0e5d3bfc530c4c6607e0f04ab7f24770070b9cc7.tar.gz livecd-tools-0e5d3bfc530c4c6607e0f04ab7f24770070b9cc7.tar.bz2 livecd-tools-0e5d3bfc530c4c6607e0f04ab7f24770070b9cc7.zip |
further cosmetic cleanupslivecd-tools-2.0.2
There were several einfo calls which ended with "...". These have been converted
to ebegins and appropriate eend, eindent and eoutdent calls were
inserted.
X-Gentoo-Bug: 388401
X-Gentoo-Bug-URL: http://bugs.gentoo.org/show_bug.cgi?id=388401
Diffstat (limited to 'init.d/hwsetup')
-rwxr-xr-x | init.d/hwsetup | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/init.d/hwsetup b/init.d/hwsetup index 60e1bb4..a13e3be 100755 --- a/init.d/hwsetup +++ b/init.d/hwsetup @@ -8,7 +8,8 @@ depend() { } start() { - einfo "Starting hwsetup ..." + ebegin "Starting hwsetup" [ -e /etc/sysconfig ] || mkdir -p /etc/sysconfig [ -x /usr/sbin/hwsetup ] && hwsetup + eend $? } |