]> git.sesse.net Git - itkacl/blob - itkacl-2.0/config.pm
c5e9742e7c526fabcd4a76482380ac0d4db89710
[itkacl] / itkacl-2.0 / config.pm
1 #! /usr/bin/perl
2
3 #
4 # ITKACL sync: Default configuration file.
5 # Set your local configuration in config.local.pm instead of editing this file.
6 #
7
8 use strict;
9 use warnings;
10
11 package itkaclsyncconfig;
12
13 our $dns_zone = 'itkacl.samfundet.no';
14 our $dns_server = 'cirkus.samfundet.no';
15 our $dns_key = "ITKACL_UPDATER:somekey==";
16
17 our $updated_file = "/etc/itkacl/updated";
18 our $last_sync_file = "/etc/itkacl/last-sync";
19
20 our $db_host = 'sql.samfundet.no';
21 our $db_name = 'itkacl';
22 our $db_user = 'itkacl';
23 our $db_pass = undef;
24
25 our $minimum_uid = 500; 
26
27 # Users that are included even though they are below $minimum_uid.
28 our @force_include_users = (
29         'root',
30 );
31
32 # Local configuration overrides defaults.
33 eval {
34         require 'config.local.pm';
35 };
36
37 1;