49 lines
1.2 KiB
Bash
49 lines
1.2 KiB
Bash
|
#!/bin/sh
|
||
|
#
|
||
|
# 2006-2008 Nico Schottelius (nico-ccollect at schottelius.org)
|
||
|
#
|
||
|
#
|
||
|
# This file is part of ccollect.
|
||
|
#
|
||
|
# ccollect is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License as published by
|
||
|
# the Free Software Foundation, either version 3 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# ccollect is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with ccollect. If not, see <http://www.gnu.org/licenses/>.
|
||
|
#
|
||
|
# Written on Do Apr 27 09:13:26 CEST 2006
|
||
|
#
|
||
|
|
||
|
if [ $# -ne 1 ]; then
|
||
|
echo "$0: ccollect-configuration directory"
|
||
|
echo ""
|
||
|
echo " Fix pre 0.4 configuration directories to match 0.4 style"
|
||
|
echo ""
|
||
|
exit 23
|
||
|
fi
|
||
|
|
||
|
tmp=$(mktemp)
|
||
|
tmp2=$(mktemp)
|
||
|
script=$(echo $0 | sed 's/\.sh/.sub.sh/')
|
||
|
|
||
|
find "$1" -type d -name intervalls > "$tmp"
|
||
|
|
||
|
#
|
||
|
# reverse found data, so deepest directories are renamed first
|
||
|
#
|
||
|
tac "$tmp" > "$tmp2"
|
||
|
|
||
|
while read intervals
|
||
|
do
|
||
|
"$script" "$intervals"
|
||
|
done < "$tmp2"
|
||
|
|
||
|
rm -f "$tmp" "$tmp2"
|