Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: edit.sh

Issue 29761555: #8852 - ldap sync output filter (Closed)
Patch Set: #8852 - ldap sync output filter Created June 5, 2018, 1:59 p.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | output.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: edit.sh
diff --git a/edit.sh b/edit.sh
new file mode 100755
index 0000000000000000000000000000000000000000..8fce43ed08df56c8307aef136abc04c11b8440a6
--- /dev/null
+++ b/edit.sh
@@ -0,0 +1,25 @@
+#!/bin/sh
+
+# Filter out uninformative output lines from the ldap-sync cron job script
+
+last_updated=""
+
+while read line; do
+ case "$line" in
+ *Updating*|*Creating*)
+ last_updated="$line"
+ ;;
+ *-\>*)
mathias 2018/06/05 14:32:19 Is there ever a case where we could encounter mult
+ echo "$last_updated"
+ echo "$line"
+ ;;
+ *Found* | \
+ *\#* | \
+ *Synchronizing*)
+ continue
+ ;;
+ *)
+ echo "$line"
+ ;;
+ esac
+done
« no previous file with comments | « no previous file | output.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld