diff options
author | martin f. krafft <madduck@debian.org> | 2008-07-02 16:50:14 +0200 |
---|---|---|
committer | maximilian attems <maks@debian.org> | 2008-07-03 00:16:48 +0200 |
commit | 7e5cad4b55f4e3ca20bb0f4dbaeaf3d6b9e7b8d7 (patch) | |
tree | c16a472392cb9aefe7224fdd32cc4152026bab73 /scripts | |
parent | 7941455289174b1f53bfa91c11cf9747a95a3a99 (diff) | |
download | initramfs-tools-7e5cad4b55f4e3ca20bb0f4dbaeaf3d6b9e7b8d7.tar.gz initramfs-tools-7e5cad4b55f4e3ca20bb0f4dbaeaf3d6b9e7b8d7.zip |
init: Remove extra ellipses
log_begin_msg already puts ... at the end of the stuff it prints, so no
need to have it in there explicitly.
Signed-off-by: martin f. krafft <madduck@debian.org>
Signed-off-by: maximilian attems <maks@debian.org>
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/local | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/local b/scripts/local index b55212e..d28917b 100644 --- a/scripts/local +++ b/scripts/local @@ -34,7 +34,7 @@ mountroot () # If the root device hasn't shown up yet, give it a little while # to deal with removable devices if [ ! -e "${ROOT}" ] || ! $(get_fstype "${ROOT}" >/dev/null); then - log_begin_msg "Waiting for root file system..." + log_begin_msg "Waiting for root file system" # Default delay is 180s if [ -z "${ROOTDELAY}" ]; then |