From b363d2579af0a11b77e698aed2e1021c2233b644 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Sat, 26 Jan 2013 13:17:50 -0600 Subject: Rename a number of libraries and executables to avoid conflicts with KDE4 --- tderesources/kolab/upgrade-resourcetype.pl | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 tderesources/kolab/upgrade-resourcetype.pl (limited to 'tderesources/kolab/upgrade-resourcetype.pl') diff --git a/tderesources/kolab/upgrade-resourcetype.pl b/tderesources/kolab/upgrade-resourcetype.pl new file mode 100644 index 000000000..98337a88d --- /dev/null +++ b/tderesources/kolab/upgrade-resourcetype.pl @@ -0,0 +1,24 @@ +#!/usr/bin/perl -w + +use strict; + +# This script updates some configuration keys + +# read the whole config file +my $currentGroup = ""; +my %configFile; +while ( <> ) { + chomp; # eat the trailing '\n' + next if ( /^$/ ); # skip empty lines + next if ( /^\#/ ); # skip comments + if ( /^\[(.+)\]$/ ) { # group begin + $currentGroup = $1; + next; + } elsif ( $currentGroup =~ /^Resource/ ) { + my ($key,$value) = split /=/; + if ( $key eq "ResourceType" and $value eq "kolab" ) { + print "# DELETE [$currentGroup]$key\n"; + print "[$currentGroup]\nResourceType=imap\n"; + } + } +} -- cgit v1.2.1