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

Side by Side Diff: edit.sh

Issue 29761555: #8852 - ldap sync output filter (Closed)
Patch Set: #8852 - ldap sync output filter Created June 20, 2018, 12:32 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | output.txt » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #!/bin/sh
2
3 # Filter out uninformative output lines from the ldap-sync cron job script
4
5 last_action=""
6
7 while read line; do
8 case "$line" in
9 *-\>*)
10 if [ ! -z "$last_action" ]
11 then
12 echo "$last_action"
13 fi
14
15 echo "$line"
16 last_action=""
17 ;;
18 --\ Found\ *\ users* | \
19 \#* | \
20 *Synchronizing\ *\ groups* | \
21 \*\*\ Synchronizing\ *\ users* | \
22 --\ Updating\ user\ \'*\'?\(*\)* | \
23 --\ Updating\ group\ \'*\'* | \
24 --\ Creating\ user\ \'*\'?\(*\)* | \
25 --\ Creating\ group\ \'*\'*)
26 last_action="$line"
27 ;;
28 *)
29 echo "$line"
30 ;;
31 esac
32 done
OLDNEW
« no previous file with comments | « no previous file | output.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld