diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2015-09-23 20:38:53 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2015-09-23 20:38:53 -0300 |
commit | 970c8ba7aa0ba3446b87f8f6084f9a28d0df4ab8 (patch) | |
tree | b1373394de75e5f1d101cc2718e4abef0096e871 /share/config/provision | |
parent | fd9ee5ef727a47a5518ba518dc7c5a99d5ebf4e1 (diff) | |
download | hydra-970c8ba7aa0ba3446b87f8f6084f9a28d0df4ab8.tar.gz hydra-970c8ba7aa0ba3446b87f8f6084f9a28d0df4ab8.tar.bz2 |
Provision configs
Diffstat (limited to 'share/config/provision')
-rw-r--r-- | share/config/provision/nas.conf | 14 | ||||
-rw-r--r-- | share/config/provision/router.conf | 14 | ||||
-rw-r--r-- | share/config/provision/tpc.conf | 14 |
3 files changed, 42 insertions, 0 deletions
diff --git a/share/config/provision/nas.conf b/share/config/provision/nas.conf new file mode 100644 index 0000000..cab4286 --- /dev/null +++ b/share/config/provision/nas.conf @@ -0,0 +1,14 @@ +# +# Sample configuration for provisioning a NAS machine. +# Uses full disk encryption and needs an external USB stick to boot. +# + +interactive="n" # Interactive mode? +encrypt="y" # Encrypt volumes? +garbage="y" # Pre-fill volumes with garbage? +disable_zeroing="y" # Disable zeroing of lvm volumes? +random_swap="y" # Random swap? +arch="amd64" # System arch +version="wheezy" # Distro version +grub="n" # Setup GRUB? +mirror="http://http.debian.net/debian/" # Debian mirror diff --git a/share/config/provision/router.conf b/share/config/provision/router.conf new file mode 100644 index 0000000..2eb24dd --- /dev/null +++ b/share/config/provision/router.conf @@ -0,0 +1,14 @@ +# +# Sample configuration for provisioning a router machine. +# The machine's disk is unencrypted. +# + +interactive="n" # Interactive mode? +encrypt="n" # Encrypt volumes? +garbage="n" # Pre-fill volumes with garbage? +disable_zeroing="y" # Disable zeroing of lvm volumes? +random_swap="n" # Random swap? +arch="amd64" # System arch +version="wheezy" # Distro version +grub="y" # Setup GRUB? +mirror="http://http.debian.net/debian/" # Debian mirror diff --git a/share/config/provision/tpc.conf b/share/config/provision/tpc.conf new file mode 100644 index 0000000..b5d4f1b --- /dev/null +++ b/share/config/provision/tpc.conf @@ -0,0 +1,14 @@ +# +# Sample configuration for provisioning a Trusted Personal Computer (TPC) +# User full disk encryption and may use an external USB stick to boot. +# + +interactive="n" # Interactive mode? +encrypt="y" # Encrypt volumes? +garbage="n" # Pre-fill volumes with garbage? +disable_zeroing="n" # Disable zeroing of lvm volumes? +random_swap="n" # Random swap? +arch="amd64" # System arch +version="wheezy" # Distro version +grub="y" # Setup GRUB? +mirror="http://http.debian.net/debian/" # Debian mirror |