Files
@ cc12c282bb3d
Branch filter:
Location: majic-ansible-roles/docs/rolereference.rst - annotation
cc12c282bb3d
3.7 KiB
text/prs.fallenstein.rst
MAR-2: Added a role for generating the preseed files.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 | c377c1d24d7c c377c1d24d7c cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d cc12c282bb3d | Role Reference
==============
Preseed
-------
This role can be used for generating simple preseed files for Debian Wheezy
installations.
The generated preseed files allow simplified installation, with a single root
partition. A number of common parameters can be provided.
Parameters
~~~~~~~~~~
**preseed_directory** (mandatory)
Destination directory where the preseed files should be stored.
**preseed_servers** (mandatory)
List of servers for which a preseed file should be created. Each item in
this list defines options for a single server. The options are as follows:
**name** (string, mandatory)
Name associated with the server. This name is used in the preseed
configuration filename.
**language** (string, mandatory)
Language.
**country** (string, mandatory)
Country.
**locale** (string, mandatory)
Locale.
**keymap** (string, mandatory)
Keymap.
**network_interface** (string, mandatory)
Name of network interface (for example *eth0*) that should be
configured.
**network_auto** (boolean, mandatory)
Specifies whether the network configuration should be automatic (using
DHCP) or manual. If manual configuration is selected a number of
additional options needs to be specified.
**network_ip** (string, mandatory if **network_auto** if *False*)
IP address for the server network interface.
**network_netmask** (string, mandatory if **network_auto** if *False*)
Netmask for the server network interface.
**network_gateway** (string, mandatory if **network_auto** if *False*)
Default gateway for the server.
**network_dns** (string, mandatory if **network_auto** if *False*)
Comma-separated list of DNS servers.
**network_hostname** (string, mandatory if **network_auto** if *False*)
Server hostname.
**network_domain** (string, mandatory if **network_auto** if *False*)
Server domain.
**mirror_hostname** (string, mandatory)
Resolvable hostname of FQDN where the Debian apt repositories can be
found. Only HTTP mirrors are supported.
**mirror_directory** (string, mandatory)
Directory under which the Debian apt repositories can be found on the
specified mirror.
**mirror_proxy** (string, optional, default is *None*)
An HTTP proxy that should be used for accessing the Debian apt
repositories.
**root_password** (string, mandatory)
Initial password that should be set for the server during the
installation.
**timezone** (string, mandatory)
Timezone that should be used when calculating server time. It is assumed
that the local hardware clock is set to UTC.
Examples
~~~~~~~~
Here is an example configuration for a preseed file for two servers, one with
automatic and one with manual network configuration:
.. code-block:: yaml
---
preseed_directory: /var/www/preseed/
preseed_servers:
- name: test1.example.com
language: en
country: SE
locale: en_US.UTF-8
keymap: us
network_interface: eth0
network_auto: yes
mirror_hostname: ftp.se.debian.org
mirror_directory: /debian
mirror_proxy: http://proxy.example.com/
root_password: testserver
timezone: Europe/Stockholm
- name: test2.example.com
language: en
country: SE
locale: en_US.UTF-8
keymap: us
network_interface: eth0
network_auto: no
network_ip: 10.0.0.10
network_netmask: 255.255.255.0
network_gateway: 10.0.0.1
network_dns: 10.0.0.2,10.0.0.3
network_hostname: test1
network_domain: example.com
mirror_hostname: ftp.se.debian.org
mirror_proxy: http://proxy.example.com/
mirror_directory: /debian
root_password: testserver
timezone: Europe/Stockholm
|