├── .gitignore ├── INTEGRATION.md ├── LICENSE ├── Makefile.global ├── README.md ├── ansible ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── bionic_minimal ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── bionic_standard ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── bookworm_minimal ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── bookworm_standard ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── bullseye_minimal ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── bullseye_standard ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── buster_minimal ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── buster_standard ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── elk ├── .gitignore └── dab.conf ├── focal_minimal ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── focal_standard ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── frr ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── haproxy ├── .gitignore ├── 200.http ├── Makefile ├── README.md ├── acme-http01-webroot.lua ├── cert-renewal-haproxy.sh ├── custom.sh ├── dab.conf ├── haproxy.cfg └── runonce.sh ├── homeassistant ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf ├── home-assistant@hass.service └── runonce.sh ├── jammy_minimal ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── jammy_standard ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── jessie_minimal ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── jessie_standard ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── lms ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── logserver ├── .gitignore ├── 00-server.conf ├── 10-input-syslog.conf ├── 20-filter-syslog.conf ├── 30-output-es.conf ├── 70-ship-logstash.conf ├── 80-ship-es.conf ├── Makefile ├── README.md ├── config.php ├── custom.sh ├── dab.conf ├── oracle-prereq.sh └── runonce.sh ├── mariadb ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf ├── runonce.sh └── zm_create.sql ├── nginx_rproxy ├── .gitignore ├── Makefile ├── README.md └── dab.conf ├── noble_minimal ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── noble_standard ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── stretch_minimal ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── stretch_standard ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── trixie_minimal ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── trixie_standard ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── trusty_minimal ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── trusty_standard ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── vyos ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf ├── patch │ ├── conntrack-tools.patch │ └── vyatta-busybox.patch └── runonce.sh ├── xenial_devbox ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── xenial_minimal ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── xenial_standard ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh ├── zabbix_server ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh └── zoneminder ├── .gitignore ├── Makefile ├── README.md ├── custom.sh ├── dab.conf └── runonce.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/.gitignore -------------------------------------------------------------------------------- /INTEGRATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/INTEGRATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile.global: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/Makefile.global -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/README.md -------------------------------------------------------------------------------- /ansible/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/ansible/.gitignore -------------------------------------------------------------------------------- /ansible/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/ansible/Makefile -------------------------------------------------------------------------------- /ansible/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/ansible/README.md -------------------------------------------------------------------------------- /ansible/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /ansible/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/ansible/dab.conf -------------------------------------------------------------------------------- /ansible/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/ansible/runonce.sh -------------------------------------------------------------------------------- /bionic_minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bionic_minimal/.gitignore -------------------------------------------------------------------------------- /bionic_minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bionic_minimal/Makefile -------------------------------------------------------------------------------- /bionic_minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bionic_minimal/README.md -------------------------------------------------------------------------------- /bionic_minimal/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /bionic_minimal/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bionic_minimal/dab.conf -------------------------------------------------------------------------------- /bionic_minimal/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bionic_minimal/runonce.sh -------------------------------------------------------------------------------- /bionic_standard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bionic_standard/.gitignore -------------------------------------------------------------------------------- /bionic_standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bionic_standard/Makefile -------------------------------------------------------------------------------- /bionic_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bionic_standard/README.md -------------------------------------------------------------------------------- /bionic_standard/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /bionic_standard/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bionic_standard/dab.conf -------------------------------------------------------------------------------- /bionic_standard/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bionic_standard/runonce.sh -------------------------------------------------------------------------------- /bookworm_minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bookworm_minimal/.gitignore -------------------------------------------------------------------------------- /bookworm_minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bookworm_minimal/Makefile -------------------------------------------------------------------------------- /bookworm_minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bookworm_minimal/README.md -------------------------------------------------------------------------------- /bookworm_minimal/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /bookworm_minimal/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bookworm_minimal/dab.conf -------------------------------------------------------------------------------- /bookworm_minimal/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bookworm_minimal/runonce.sh -------------------------------------------------------------------------------- /bookworm_standard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bookworm_standard/.gitignore -------------------------------------------------------------------------------- /bookworm_standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bookworm_standard/Makefile -------------------------------------------------------------------------------- /bookworm_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bookworm_standard/README.md -------------------------------------------------------------------------------- /bookworm_standard/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /bookworm_standard/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bookworm_standard/dab.conf -------------------------------------------------------------------------------- /bookworm_standard/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bookworm_standard/runonce.sh -------------------------------------------------------------------------------- /bullseye_minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bullseye_minimal/.gitignore -------------------------------------------------------------------------------- /bullseye_minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bullseye_minimal/Makefile -------------------------------------------------------------------------------- /bullseye_minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bullseye_minimal/README.md -------------------------------------------------------------------------------- /bullseye_minimal/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /bullseye_minimal/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bullseye_minimal/dab.conf -------------------------------------------------------------------------------- /bullseye_minimal/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bullseye_minimal/runonce.sh -------------------------------------------------------------------------------- /bullseye_standard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bullseye_standard/.gitignore -------------------------------------------------------------------------------- /bullseye_standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bullseye_standard/Makefile -------------------------------------------------------------------------------- /bullseye_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bullseye_standard/README.md -------------------------------------------------------------------------------- /bullseye_standard/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /bullseye_standard/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bullseye_standard/dab.conf -------------------------------------------------------------------------------- /bullseye_standard/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/bullseye_standard/runonce.sh -------------------------------------------------------------------------------- /buster_minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/buster_minimal/.gitignore -------------------------------------------------------------------------------- /buster_minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/buster_minimal/Makefile -------------------------------------------------------------------------------- /buster_minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/buster_minimal/README.md -------------------------------------------------------------------------------- /buster_minimal/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /buster_minimal/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/buster_minimal/dab.conf -------------------------------------------------------------------------------- /buster_minimal/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/buster_minimal/runonce.sh -------------------------------------------------------------------------------- /buster_standard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/buster_standard/.gitignore -------------------------------------------------------------------------------- /buster_standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/buster_standard/Makefile -------------------------------------------------------------------------------- /buster_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/buster_standard/README.md -------------------------------------------------------------------------------- /buster_standard/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /buster_standard/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/buster_standard/dab.conf -------------------------------------------------------------------------------- /buster_standard/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/buster_standard/runonce.sh -------------------------------------------------------------------------------- /elk/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/elk/.gitignore -------------------------------------------------------------------------------- /elk/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/elk/dab.conf -------------------------------------------------------------------------------- /focal_minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/focal_minimal/.gitignore -------------------------------------------------------------------------------- /focal_minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/focal_minimal/Makefile -------------------------------------------------------------------------------- /focal_minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/focal_minimal/README.md -------------------------------------------------------------------------------- /focal_minimal/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /focal_minimal/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/focal_minimal/dab.conf -------------------------------------------------------------------------------- /focal_minimal/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/focal_minimal/runonce.sh -------------------------------------------------------------------------------- /focal_standard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/focal_standard/.gitignore -------------------------------------------------------------------------------- /focal_standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/focal_standard/Makefile -------------------------------------------------------------------------------- /focal_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/focal_standard/README.md -------------------------------------------------------------------------------- /focal_standard/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /focal_standard/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/focal_standard/dab.conf -------------------------------------------------------------------------------- /focal_standard/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/focal_standard/runonce.sh -------------------------------------------------------------------------------- /frr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/frr/.gitignore -------------------------------------------------------------------------------- /frr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/frr/Makefile -------------------------------------------------------------------------------- /frr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/frr/README.md -------------------------------------------------------------------------------- /frr/custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/frr/custom.sh -------------------------------------------------------------------------------- /frr/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/frr/dab.conf -------------------------------------------------------------------------------- /frr/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/frr/runonce.sh -------------------------------------------------------------------------------- /haproxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/haproxy/.gitignore -------------------------------------------------------------------------------- /haproxy/200.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/haproxy/200.http -------------------------------------------------------------------------------- /haproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/haproxy/Makefile -------------------------------------------------------------------------------- /haproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/haproxy/README.md -------------------------------------------------------------------------------- /haproxy/acme-http01-webroot.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/haproxy/acme-http01-webroot.lua -------------------------------------------------------------------------------- /haproxy/cert-renewal-haproxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/haproxy/cert-renewal-haproxy.sh -------------------------------------------------------------------------------- /haproxy/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /haproxy/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/haproxy/dab.conf -------------------------------------------------------------------------------- /haproxy/haproxy.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/haproxy/haproxy.cfg -------------------------------------------------------------------------------- /haproxy/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/haproxy/runonce.sh -------------------------------------------------------------------------------- /homeassistant/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/homeassistant/.gitignore -------------------------------------------------------------------------------- /homeassistant/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/homeassistant/Makefile -------------------------------------------------------------------------------- /homeassistant/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/homeassistant/README.md -------------------------------------------------------------------------------- /homeassistant/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /homeassistant/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/homeassistant/dab.conf -------------------------------------------------------------------------------- /homeassistant/home-assistant@hass.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/homeassistant/home-assistant@hass.service -------------------------------------------------------------------------------- /homeassistant/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/homeassistant/runonce.sh -------------------------------------------------------------------------------- /jammy_minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jammy_minimal/.gitignore -------------------------------------------------------------------------------- /jammy_minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jammy_minimal/Makefile -------------------------------------------------------------------------------- /jammy_minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jammy_minimal/README.md -------------------------------------------------------------------------------- /jammy_minimal/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /jammy_minimal/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jammy_minimal/dab.conf -------------------------------------------------------------------------------- /jammy_minimal/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jammy_minimal/runonce.sh -------------------------------------------------------------------------------- /jammy_standard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jammy_standard/.gitignore -------------------------------------------------------------------------------- /jammy_standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jammy_standard/Makefile -------------------------------------------------------------------------------- /jammy_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jammy_standard/README.md -------------------------------------------------------------------------------- /jammy_standard/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /jammy_standard/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jammy_standard/dab.conf -------------------------------------------------------------------------------- /jammy_standard/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jammy_standard/runonce.sh -------------------------------------------------------------------------------- /jessie_minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jessie_minimal/.gitignore -------------------------------------------------------------------------------- /jessie_minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jessie_minimal/Makefile -------------------------------------------------------------------------------- /jessie_minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jessie_minimal/README.md -------------------------------------------------------------------------------- /jessie_minimal/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /jessie_minimal/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jessie_minimal/dab.conf -------------------------------------------------------------------------------- /jessie_minimal/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jessie_minimal/runonce.sh -------------------------------------------------------------------------------- /jessie_standard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jessie_standard/.gitignore -------------------------------------------------------------------------------- /jessie_standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jessie_standard/Makefile -------------------------------------------------------------------------------- /jessie_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jessie_standard/README.md -------------------------------------------------------------------------------- /jessie_standard/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /jessie_standard/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jessie_standard/dab.conf -------------------------------------------------------------------------------- /jessie_standard/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/jessie_standard/runonce.sh -------------------------------------------------------------------------------- /lms/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/lms/.gitignore -------------------------------------------------------------------------------- /lms/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/lms/Makefile -------------------------------------------------------------------------------- /lms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/lms/README.md -------------------------------------------------------------------------------- /lms/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /lms/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/lms/dab.conf -------------------------------------------------------------------------------- /lms/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/lms/runonce.sh -------------------------------------------------------------------------------- /logserver/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/.gitignore -------------------------------------------------------------------------------- /logserver/00-server.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/00-server.conf -------------------------------------------------------------------------------- /logserver/10-input-syslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/10-input-syslog.conf -------------------------------------------------------------------------------- /logserver/20-filter-syslog.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/20-filter-syslog.conf -------------------------------------------------------------------------------- /logserver/30-output-es.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/30-output-es.conf -------------------------------------------------------------------------------- /logserver/70-ship-logstash.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/70-ship-logstash.conf -------------------------------------------------------------------------------- /logserver/80-ship-es.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/80-ship-es.conf -------------------------------------------------------------------------------- /logserver/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/Makefile -------------------------------------------------------------------------------- /logserver/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/README.md -------------------------------------------------------------------------------- /logserver/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/config.php -------------------------------------------------------------------------------- /logserver/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /logserver/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/dab.conf -------------------------------------------------------------------------------- /logserver/oracle-prereq.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/oracle-prereq.sh -------------------------------------------------------------------------------- /logserver/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/logserver/runonce.sh -------------------------------------------------------------------------------- /mariadb/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/mariadb/.gitignore -------------------------------------------------------------------------------- /mariadb/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/mariadb/Makefile -------------------------------------------------------------------------------- /mariadb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/mariadb/README.md -------------------------------------------------------------------------------- /mariadb/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /mariadb/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/mariadb/dab.conf -------------------------------------------------------------------------------- /mariadb/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/mariadb/runonce.sh -------------------------------------------------------------------------------- /mariadb/zm_create.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/mariadb/zm_create.sql -------------------------------------------------------------------------------- /nginx_rproxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/nginx_rproxy/.gitignore -------------------------------------------------------------------------------- /nginx_rproxy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/nginx_rproxy/Makefile -------------------------------------------------------------------------------- /nginx_rproxy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/nginx_rproxy/README.md -------------------------------------------------------------------------------- /nginx_rproxy/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/nginx_rproxy/dab.conf -------------------------------------------------------------------------------- /noble_minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/noble_minimal/.gitignore -------------------------------------------------------------------------------- /noble_minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/noble_minimal/Makefile -------------------------------------------------------------------------------- /noble_minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/noble_minimal/README.md -------------------------------------------------------------------------------- /noble_minimal/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 -------------------------------------------------------------------------------- /noble_minimal/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/noble_minimal/dab.conf -------------------------------------------------------------------------------- /noble_minimal/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/noble_minimal/runonce.sh -------------------------------------------------------------------------------- /noble_standard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/noble_standard/.gitignore -------------------------------------------------------------------------------- /noble_standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/noble_standard/Makefile -------------------------------------------------------------------------------- /noble_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/noble_standard/README.md -------------------------------------------------------------------------------- /noble_standard/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /noble_standard/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/noble_standard/dab.conf -------------------------------------------------------------------------------- /noble_standard/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/noble_standard/runonce.sh -------------------------------------------------------------------------------- /stretch_minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/stretch_minimal/.gitignore -------------------------------------------------------------------------------- /stretch_minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/stretch_minimal/Makefile -------------------------------------------------------------------------------- /stretch_minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/stretch_minimal/README.md -------------------------------------------------------------------------------- /stretch_minimal/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /stretch_minimal/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/stretch_minimal/dab.conf -------------------------------------------------------------------------------- /stretch_minimal/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/stretch_minimal/runonce.sh -------------------------------------------------------------------------------- /stretch_standard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/stretch_standard/.gitignore -------------------------------------------------------------------------------- /stretch_standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/stretch_standard/Makefile -------------------------------------------------------------------------------- /stretch_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/stretch_standard/README.md -------------------------------------------------------------------------------- /stretch_standard/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /stretch_standard/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/stretch_standard/dab.conf -------------------------------------------------------------------------------- /stretch_standard/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/stretch_standard/runonce.sh -------------------------------------------------------------------------------- /trixie_minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trixie_minimal/.gitignore -------------------------------------------------------------------------------- /trixie_minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trixie_minimal/Makefile -------------------------------------------------------------------------------- /trixie_minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trixie_minimal/README.md -------------------------------------------------------------------------------- /trixie_minimal/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /trixie_minimal/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trixie_minimal/dab.conf -------------------------------------------------------------------------------- /trixie_minimal/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trixie_minimal/runonce.sh -------------------------------------------------------------------------------- /trixie_standard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trixie_standard/.gitignore -------------------------------------------------------------------------------- /trixie_standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trixie_standard/Makefile -------------------------------------------------------------------------------- /trixie_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trixie_standard/README.md -------------------------------------------------------------------------------- /trixie_standard/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /trixie_standard/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trixie_standard/dab.conf -------------------------------------------------------------------------------- /trixie_standard/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trixie_standard/runonce.sh -------------------------------------------------------------------------------- /trusty_minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trusty_minimal/.gitignore -------------------------------------------------------------------------------- /trusty_minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trusty_minimal/Makefile -------------------------------------------------------------------------------- /trusty_minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trusty_minimal/README.md -------------------------------------------------------------------------------- /trusty_minimal/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /trusty_minimal/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trusty_minimal/dab.conf -------------------------------------------------------------------------------- /trusty_minimal/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trusty_minimal/runonce.sh -------------------------------------------------------------------------------- /trusty_standard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trusty_standard/.gitignore -------------------------------------------------------------------------------- /trusty_standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trusty_standard/Makefile -------------------------------------------------------------------------------- /trusty_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trusty_standard/README.md -------------------------------------------------------------------------------- /trusty_standard/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /trusty_standard/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trusty_standard/dab.conf -------------------------------------------------------------------------------- /trusty_standard/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/trusty_standard/runonce.sh -------------------------------------------------------------------------------- /vyos/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/vyos/.gitignore -------------------------------------------------------------------------------- /vyos/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/vyos/Makefile -------------------------------------------------------------------------------- /vyos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/vyos/README.md -------------------------------------------------------------------------------- /vyos/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /vyos/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/vyos/dab.conf -------------------------------------------------------------------------------- /vyos/patch/conntrack-tools.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/vyos/patch/conntrack-tools.patch -------------------------------------------------------------------------------- /vyos/patch/vyatta-busybox.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/vyos/patch/vyatta-busybox.patch -------------------------------------------------------------------------------- /vyos/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/vyos/runonce.sh -------------------------------------------------------------------------------- /xenial_devbox/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_devbox/.gitignore -------------------------------------------------------------------------------- /xenial_devbox/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_devbox/Makefile -------------------------------------------------------------------------------- /xenial_devbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_devbox/README.md -------------------------------------------------------------------------------- /xenial_devbox/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /xenial_devbox/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_devbox/dab.conf -------------------------------------------------------------------------------- /xenial_devbox/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_devbox/runonce.sh -------------------------------------------------------------------------------- /xenial_minimal/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_minimal/.gitignore -------------------------------------------------------------------------------- /xenial_minimal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_minimal/Makefile -------------------------------------------------------------------------------- /xenial_minimal/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_minimal/README.md -------------------------------------------------------------------------------- /xenial_minimal/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /xenial_minimal/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_minimal/dab.conf -------------------------------------------------------------------------------- /xenial_minimal/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_minimal/runonce.sh -------------------------------------------------------------------------------- /xenial_standard/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_standard/.gitignore -------------------------------------------------------------------------------- /xenial_standard/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_standard/Makefile -------------------------------------------------------------------------------- /xenial_standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_standard/README.md -------------------------------------------------------------------------------- /xenial_standard/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /xenial_standard/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_standard/dab.conf -------------------------------------------------------------------------------- /xenial_standard/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/xenial_standard/runonce.sh -------------------------------------------------------------------------------- /zabbix_server/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/zabbix_server/.gitignore -------------------------------------------------------------------------------- /zabbix_server/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/zabbix_server/Makefile -------------------------------------------------------------------------------- /zabbix_server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/zabbix_server/README.md -------------------------------------------------------------------------------- /zabbix_server/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /zabbix_server/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/zabbix_server/dab.conf -------------------------------------------------------------------------------- /zabbix_server/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/zabbix_server/runonce.sh -------------------------------------------------------------------------------- /zoneminder/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/zoneminder/.gitignore -------------------------------------------------------------------------------- /zoneminder/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/zoneminder/Makefile -------------------------------------------------------------------------------- /zoneminder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/zoneminder/README.md -------------------------------------------------------------------------------- /zoneminder/custom.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | exit 0 4 | -------------------------------------------------------------------------------- /zoneminder/dab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/zoneminder/dab.conf -------------------------------------------------------------------------------- /zoneminder/runonce.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngardiner/dab_templates/HEAD/zoneminder/runonce.sh --------------------------------------------------------------------------------