1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
|
########################################################
# Configuration file for objects definition in PICA
#
# $Id: objects.conf,v 1.1.2.6.2.2 2002/07/25 16:16:31 cvs Exp $
#
# Miguel Armas <kuko@ulpgc.es>
# Esteban Machado <zoso@demiurgo.org>
########################################################
## Defaults
defaults {
uid = 0;
gid = 0;
perms = 644;
verbatim = 0;
vars {
## MANDATORY VARIABLES FOR PIFIA
# Where to send mail notifications
notifymail = 'you@somewhere.com';
# Where to send pager (or sms) notifications
notifypager = 'yoursms@yoursmsgw.com';
# Uncomment this if you install picalib and want to use it
# #include "/etc/picalib/picalib.conf"
}
}
## Include PIFIA configuration (you'll have to download PICALib and install
## it)
# #include "/etc/picalib/PIFIA/pifia.conf"
# Just a test entry...
file pica-rules {
path = '<#$picaroot#>/rules';
source = 'pica-rules';
vars {
myvar = 'foo';
limit = '2';
mythirdvar = 'enough';
}
}
## SSH RSA Authentication Files
group sshauth {
file auth_keys {
source = 'SSHAuth/authorized_keys';
path = '/root/.ssh/authorized_keys';
perms = '600';
}
file auth_keys2 {
source = 'SSHAuth/authorized_keys2';
path = '/root/.ssh/authorized_keys2';
perms = '600';
}
}
|