Subversion Repositories camp_sysinfo_client_3

Rev

Blame | Last modification | View Log | Download | RSS feed

#! /usr/bin/env perl

use strict;
use warnings;

# uninstall script
#
# very basic, just looks in several directories and removes files in them
# removed config file also

my @dirs = (
   '/usr/local/opt/camp/sysinfo-client',
   '/usr/local/etc/camp/sysinfo-client',
   '/opt/camp/sysinfo-client',
   '/etc/camp/sysinfo-client'
);

foreach $dir ( @dirs ) {
   `rm -fR $dir` if -d $dir;
}

1;