Installs and configures Cobbler and Cobbler Web.
- CentOS 6.5, 5.10
- Ubuntu 12.04, 14.04
Key | Type | Description | Default |
---|---|---|---|
['cobbler']['root_password'] | String | Root password for Kickstart templates. | `echo 'root' | shasum -a 512 -p` |
['cobbler']['user']['password'] | String | Root password for Kickstart templates. | `echo 'cloud' | shasum -a 512 -p` |
['cobbler']['user']['name'] | String | UNIX username | cloud |
['cobbler']['user']['uid'] | Integer | UNIX uid | 900 |
Include cobblerd
in your node's run_list
:
{
"run_list": [
"recipe[cobblerd::default]"
]
}
Include cobblerd
in your node's run_list
:
{
"run_list": [
"recipe[cobblerd::web]"
]
}
Include cobblerd
in your node's run_list
:
{
"run_list": [
"recipe[cobblerd::centos]"
]
}
Include cobblerd
in your node's run_list
:
{
"run_list": [
"recipe[cobblerd::ubuntu]"
]
}
Author:: Bloomberg Compute Architecture Group (compute@bloomberg.net)