Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
backupninja
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
lyz
backupninja
Commits
030f94df
Commit
030f94df
authored
Jun 30, 2005
by
elijah
Browse files
Options
Downloads
Patches
Plain Diff
changed and improved the log file output
parent
0abb625a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
backupninja
+17
-11
17 additions, 11 deletions
backupninja
with
17 additions
and
11 deletions
backupninja
+
17
−
11
View file @
030f94df
...
@@ -87,9 +87,13 @@ function printmsg() {
...
@@ -87,9 +87,13 @@ function printmsg() {
fi
fi
if
[
$print
-lt
$loglevel
]
;
then
if
[
$print
-lt
$loglevel
]
;
then
if
[
-w
"
$logfile
"
]
;
then
logmsg
"
$typestr$@
"
colorize
"
$typestr$@
"
>>
$logfile
fi
fi
}
function
logmsg
()
{
if
[
-w
"
$logfile
"
]
;
then
echo
-e
`
date
"+%h %d %H:%M:%S"
`
"
$@
"
>>
$logfile
fi
fi
}
}
...
@@ -268,9 +272,9 @@ function process_action() {
...
@@ -268,9 +272,9 @@ function process_action() {
# is not set to the current time.
# is not set to the current time.
getconf when
"
$defaultwhen
"
getconf when
"
$defaultwhen
"
if
[
"
$processnow
"
==
1
]
;
then
if
[
"
$processnow
"
==
1
]
;
then
info
"
running
$file
because of --now"
info
"
>>>> starting action
$file
(
because of --now
)
"
elif
[
"
$when
"
==
"hourly"
]
;
then
elif
[
"
$when
"
==
"hourly"
]
;
then
debug
"running
$file
because 'when = hourly'"
info
">>>> starting action
$file
(
because 'when = hourly'
)
"
else
else
IFS
=
$'
\t\n
'
IFS
=
$'
\t\n
'
for
w
in
$when
;
do
for
w
in
$when
;
do
...
@@ -282,7 +286,7 @@ function process_action() {
...
@@ -282,7 +286,7 @@ function process_action() {
debug
"skipping
$file
because it is not
$w
"
debug
"skipping
$file
because it is not
$w
"
return
return
else
else
info
"
running
$file
because it is
$w
"
info
"
>>>> starting action
$file
(
because it is
$w
)
"
fi
fi
done
done
IFS
=
$'
\t\n
'
IFS
=
$'
\t\n
'
...
@@ -314,19 +318,18 @@ function process_action() {
...
@@ -314,19 +318,18 @@ function process_action() {
rm
$bufferfile
rm
$bufferfile
if
[
$_fatals
!=
0
]
;
then
if
[
$_fatals
!=
0
]
;
then
msg
"*failed* --
$file
"
msg
"*failed* --
$file
"
errormsg
=
"
$errormsg
\n
== failures from
$file
==
\n\n
$ret
\n
"
passthru
"Fatal: <<<< finished action
$file
: FAILED
"
elif
[
$_errors
!=
0
]
;
then
elif
[
$_errors
!=
0
]
;
then
msg
"*error* --
$file
"
msg
"*error* --
$file
"
errormsg
=
"
$errormsg
\n
== errors from
$file
==
\n\n
$ret
\n
"
errormsg
=
"
$errormsg
\n
== errors from
$file
==
\n\n
$ret
\n
"
error
"<<<< finished action
$file
: ERROR"
elif
[
$_warnings
!=
0
]
;
then
elif
[
$_warnings
!=
0
]
;
then
msg
"*warning* --
$file
"
msg
"*warning* --
$file
"
errormsg
=
"
$errormsg
\n
== warnings from
$file
==
\n\n
$ret
\n
"
errormsg
=
"
$errormsg
\n
== warnings from
$file
==
\n\n
$ret
\n
"
warning
"<<<< finished action
$file
: WARNING"
else
else
msg
"success --
$file
"
msg
"success --
$file
"
# elif [ $retcode == 0 ]; then
info
"<<<< finished action
$file
: SUCCESS"
# msg "success -- $file"
# else
# msg "unknown -- $file"
fi
fi
let
"fatals += _fatals"
let
"fatals += _fatals"
...
@@ -511,3 +514,6 @@ if [ $doit == 1 ]; then
...
@@ -511,3 +514,6 @@ if [ $doit == 1 ]; then
}
| mail
$reportemail
-s
"backupninja:
$hostname
$subject
"
}
| mail
$reportemail
-s
"backupninja:
$hostname
$subject
"
fi
fi
if
[
$actions_run
!=
0
]
;
then
info
"FINISHED:
$actions_run
actions run.
$fatals
fatal.
$errors
error.
$warnings
warning."
fi
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment