diff options
author | Bob Gilligan <gilligan@vyatta.com> | 2010-03-04 16:37:03 -0800 |
---|---|---|
committer | Bob Gilligan <gilligan@vyatta.com> | 2010-03-04 16:37:03 -0800 |
commit | d5a3ecac961f5089db0c496ff1d29b776be92b00 (patch) | |
tree | 0c6370906227a4a26810a4eebe39402511814723 /scripts/vyatta-show-version | |
parent | 5fe8388ae313e1a9b94482c2231b47299db9d535 (diff) | |
download | vyatta-op-d5a3ecac961f5089db0c496ff1d29b776be92b00.tar.gz vyatta-op-d5a3ecac961f5089db0c496ff1d29b776be92b00.zip |
Bugfix 5394: Move colon characters to their proper locations.
Diffstat (limited to 'scripts/vyatta-show-version')
-rwxr-xr-x | scripts/vyatta-show-version | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/vyatta-show-version b/scripts/vyatta-show-version index 64f8aa0..8181f6f 100755 --- a/scripts/vyatta-show-version +++ b/scripts/vyatta-show-version @@ -165,10 +165,10 @@ if (defined($booted) && $booted ne "") { $booted="disk"; } } -print "Boot via : $booted\n"; +print "Boot via: $booted\n"; my $uptime = `uptime`; if (defined $uptime && $uptime ne "") { - print "Uptime : $uptime\n"; + print "Uptime: $uptime\n"; } if (!(-e $debsfile)) { exit 0; |