@cryptotaxi247 / infra-1 / commits / c0161966

* Remove some obsolete files.

svn path=/configurations/trunk/tud/; revision=23724

Eelco Dolstra committed Sep 10, 2010 at 14:58 UTC c016196642a487b9df357feb430ef9d8b9e9f7ad
3 files changed -162
nagios-base.cfg deleted
-77
@@ -1,77 +0,0 @@
1 -### Contacts.
2 -
3 -define contact {
4 - contact_name eelco
5 - alias Eelco Dolstra
6 - service_notification_period 24x7
7 - host_notification_period 24x7
8 - service_notification_options w,u,c,r
9 - host_notification_options d,r
10 - service_notification_commands notify-by-email
11 - host_notification_commands host-notify-by-email
12 - email eelco@cs.uu.nl
13 -}
14 -
15 -
16 -define contactgroup {
17 - contactgroup_name admins
18 - alias Administrators
19 - members eelco
20 -}
21 -
22 -
23 -### Hosts.
24 -
25 -define host {
26 - host_name localhost
27 - use generic-server
28 - alias Nagios monitor
29 - address 127.0.0.1
30 -}
31 -
32 -
33 -define hostgroup {
34 - hostgroup_name tud-buildfarm
35 - alias TUD Build Farm
36 - members localhost
37 -}
38 -
39 -
40 -### Services.
41 -
42 -define service {
43 - service_description Root Partition on localhost
44 - use local-service
45 - host_name localhost
46 - servicegroups diskspace
47 - check_command check_local_disk!15%!5%!/
48 -}
49 -
50 -
51 -define service {
52 - service_description Nix Partition on localhost
53 - use local-service
54 - host_name localhost
55 - servicegroups diskspace
56 - check_command check_local_disk!2%!1%!/nix
57 -}
58 -
59 -
60 -define servicegroup {
61 - servicegroup_name diskspace
62 - alias Disk space
63 -}
64 -
65 -
66 -define servicegroup {
67 - servicegroup_name ssh
68 - alias SSH
69 -}
70 -
71 -
72 -### Commands.
73 -
74 -define command {
75 - command_name check_remote_disk
76 - command_line check_by_ssh -l $ARG1$ -i $ARG2$ -H $HOSTADDRESS$ -C '/nix/var/nix/profiles/default/libexec/check_disk -w $ARG3$ -c $ARG4$ -p $ARG5$'
77 -}
vm-nix-01.nix deleted
-25
@@ -1,25 +0,0 @@
1 -{
2 - boot = {
3 - grubDevice = "/dev/hda";
4 - };
5 -
6 - networking = {
7 - hostName = "vm-nix-01";
8 - };
9 -
10 - fileSystems = [
11 - { mountPoint = "/";
12 - label = "nixos";
13 - }
14 - ];
15 -
16 - swapDevices = [
17 - { label = "swap"; }
18 - ];
19 -
20 - services = {
21 - sshd = {
22 - enable = true;
23 - };
24 - };
25 -}
webdsl.nix deleted
-60
@@ -1,60 +0,0 @@
1 -{
2 - boot = {
3 - grubDevice = "/dev/sda";
4 -
5 - initrd = {
6 - extraKernelModules = [ "mptbase" "mptscsih" "mptsas" ];
7 - };
8 - };
9 -
10 - fileSystems = [
11 - {
12 - mountPoint = "/";
13 - device = "/dev/sda4";
14 - fsType = "ext3";
15 - }
16 - ];
17 -
18 - swapDevices = [
19 - { device = "/dev/sda3"; }
20 - ];
21 -
22 - networking = {
23 - defaultGateway = "130.161.158.1";
24 - hostName = "webdsl";
25 - domain = "st.ewi.tudelft.nl";
26 -
27 - interfaces = [ { ipAddress = "130.161.159.185"; name = "eth0"; subnetMask = "255.255.254.0"; } ];
28 - nameservers = [ "130.161.158.4" "130.161.158.133" ];
29 - useDHCP = false;
30 - };
31 -
32 - services = {
33 - sshd = {
34 - enable = true;
35 - };
36 -
37 - httpd = {
38 - enable = true;
39 - adminAddr = "webdsl@st.ewi.tudelft.nl";
40 - mod_jk = {
41 - enable = true;
42 - applicationMappings = [ "webdslorg" ];
43 - };
44 - };
45 -
46 - mysql = {
47 - enable = true;
48 - };
49 -
50 - jboss = {
51 - enable = true;
52 - useJK = true;
53 - };
54 -
55 - vsftpd = {
56 - enable = true;
57 - anonymousUser = true;
58 - };
59 - };
60 -}