diff options
-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 |