-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #40 from jouvin/sl5.x-x86_64
Add ability to do base network configuration as part of the OS configuration
- Loading branch information
Showing
2 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
template-library-os | ||
=================== | ||
|
||
Template library for configuring OS. | ||
|
||
This repository contains one branch for each OS version. OS versions with '-spma' suffix are intended for deployment by | ||
SPMA-based ncm-spma. Those without the suffix are intended to be deployed with the YUM-based ncm-spma (v3 and later). | ||
|
||
This branch, sl5.x, delivers templates that can be used to deploy any RHEL/CENTOS/SL5 version. When using other parts of the template | ||
library, to use these templates you need to define the following variable: | ||
|
||
variable OS_FLAVOUR_ENABLED ?= true; | ||
|
||
You also need to define the actual OS version to deploy using variable OS_VERSION, as with previous generation | ||
of OS templates. | ||
|
||
In addition if you use YUM snapshot (you should!), you probably want to define the following variables, changing the | ||
values to what is appropriate for your site (see http://quattor.github.com//documentation/2014/03/24/spma-yum-migration.html): | ||
|
||
variable YUM_SNAPSHOT_DATE ?= '20140304'; | ||
variable AII_OSINSTALL_ROOT = '/yum/snapshots/'+YUM_SNAPSHOT_DATE; | ||
|
||
OS base configuration now includes by default network configuration, using the standard network configuration | ||
implemented by os/network/config from template-library-standard. To disable this standard network configuration, | ||
define variable OS_BASE_CONFIGURE_NETWORK to false. Note that in this case, you must provide the network | ||
configuration as part of the site-specific configuration. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters