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 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
|
#######################################################
# Configuration file for objects definition in PICA
#
# $Id: objects.conf,v 1.5 2002/06/22 18:33:31 cvs Exp $
#
# Miguel Armas <kuko@ulpgc.es>
# Esteban Machado <zoso@ulpgc.es>
########################################################
## Defaults
defaults {
uid = 0;
gid = 0;
perms = 644;
verbatim = 0;
vars {
## Global Variables
# Where we have all the System Administration utils/sources
sysadm = '/opt/SysAdm';
}
}
## SSH RSA Authentication Files
group sshauth {
file auth_keys {
source = 'SSHAuth/authorized_keys';
path = '/root/.ssh/authorized_keys';
perms = '600';
}
file auth_keys2 {
#if (ingroup('ulpgc'))
source = 'SSHAuth/authorized_keys2.ulpgc';
#else
source = 'SSHAuth/authorized_keys2';
#fi
path = '/root/.ssh/authorized_keys2';
perms = '600';
}
}
##################
### REAL SERVICES
##################
####################
### PICALib Modules
####################
## PIFIA
#include "$picalibconf/PIFIA/pifia.conf"
## Info
#include "$picalibconf/Info/Info.conf"
## APTChk
#include "$picalibconf/APTChk/APTChk.conf"
## TripWire
#include "$picalibconf/TripWire/tripwire.conf"
## NTP
#include "$picalibconf/NTP/pica_ntp.conf"
## Backup (AMANDA)
#include "$picalibconf/Backup/backup.conf"
## General Alarms
#include "$picalibconf/genalarms/genalarms.conf"
## DHCP
#include "$picalibconf/DHCP/DHCP.conf"
## DNS
#include "$picalibconf/DNS/DNS.conf"
## Snort
#include "$picalibconf/Snort/Snort.conf"
## FireWall
#include "$picalibconf/FireWall/FireWall.conf"
## Antivirus
#include "$picalibconf/AntiVirus/AntiVirus.conf"
|