summaryrefslogtreecommitdiffstats
path: root/scripts/get-maintainer
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/get-maintainer')
-rwxr-xr-xscripts/get-maintainer75
1 files changed, 75 insertions, 0 deletions
diff --git a/scripts/get-maintainer b/scripts/get-maintainer
new file mode 100755
index 0000000..d5a7907
--- /dev/null
+++ b/scripts/get-maintainer
@@ -0,0 +1,75 @@
1#!/bin/sh
2# -*- mode: shell-script; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*-
3#
4# Copyright (C) 2014 O.S. Systems Software LTDA.
5# Authored-by: Otavio Salvador <otavio@ossystems.com.br>
6#
7# This program is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License version 2 as
9# published by the Free Software Foundation.
10#
11# This program is distributed in the hope that it will be useful,
12# but WITHOUT ANY WARRANTY; without even the implied warranty of
13# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14# GNU General Public License for more details.
15#
16# You should have received a copy of the GNU General Public License along
17# with this program; if not, write to the Free Software Foundation, Inc.,
18# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19
20usage() {
21 cat<<EOF
22Usage:
23
24 $0 <path> [machine]
25
26 Options:
27
28 path: directory to look for machine definition files
29 machine: optinal param to restrict the printing for a specific machine name
30
31
32EOF
33}
34
35path=$1
36specific_machine=$2
37
38if [ -z "$1" ]; then
39 usage
40 return 1
41fi
42
43maintained=`mktemp`
44orphan=`mktemp`
45
46machines=`find $path -wholename '*/conf/machine/*.conf'`
47for m in $machines; do
48 machine=`basename $m | sed 's,\.conf$,,g'`
49 if [ -n "$specific_machine" ] && [ "$machine" != "$specific_machine" ]; then
50 continue
51 fi
52
53 name=`sed -n 's,#@NAME:\s*\(.*\)\s*,\1,p' $m`
54 maint=`sed -n 's,#@MAINTAINER:\s*\(.*\)\s*,\1,p' $m`
55
56 if [ -n "$maint" ]; then
57 printf "%-25s %-50s %-50s\n" "$machine" "$name" "$maint" >> $maintained
58 else
59 printf "%-25s %-50s %-50s\n" "$machine" "$name" "Orphan" >> $orphan
60 fi
61done
62
63cat <<EOF
64========================= ================================================== ==================================================
65 Machine Name Maintainer
66========================= ================================================== ==================================================
67EOF
68sort -u -k 2 $maintained | grep -v $^
69
70sort -u -k 2 $orphan | grep -v $^
71
72cat <<EOF
73========================= ================================================== ==================================================
74EOF
75rm $maintained $orphan