]> git.sesse.net Git - itkacl/blob - itkacl-2.1/config.pm
Update for PHP 7.
[itkacl] / itkacl-2.1 / 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 $max_updates_per_transaction = 1000;
26
27 our $minimum_uid = 500; 
28
29 # Users that are included even though they are below $minimum_uid.
30 our @force_include_users = (
31         'root',
32 );
33
34 # Local configuration overrides defaults.
35 eval {
36         require 'config.local.pm';
37 };
38
39 1;