projects
/
feisty_meow.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4908d5a
)
stopped needing mdate to be built by using date stringer instead.
author
root
<root@serene.koeritz.org>
Sun, 26 Feb 2012 20:29:17 +0000
(15:29 -0500)
committer
root
<root@serene.koeritz.org>
Sun, 26 Feb 2012 20:29:17 +0000
(15:29 -0500)
scripts/system/write_uptime_report.sh
patch
|
blob
|
history
diff --git
a/scripts/system/write_uptime_report.sh
b/scripts/system/write_uptime_report.sh
index b4a35c174724d0f6fe611b33f12be8a47f7ce5c8..e5dfb35571fb3e8e1a1c3031f57fe4fad9f4b67e 100644
(file)
--- a/
scripts/system/write_uptime_report.sh
+++ b/
scripts/system/write_uptime_report.sh
@@
-1,6
+1,7
@@
#!/bin/bash
# writes an uptime report to a file in the home directory which is named
# after the current machine's hostname.
+source "$FEISTY_MEOW_DIR/scripts/core/functions.sh"
export hosty=$(hostname | sed -e 's/^\([^.]*\).*$/\1/')
export REPORT_FILE="$HOME/${hosty}_uptime.log"
-echo "$(
$BINDIR/mdate
) -- $(uptime)" >>"$REPORT_FILE" 2>&1
+echo "$(
date_stringer
) -- $(uptime)" >>"$REPORT_FILE" 2>&1