Merge branch 'master' into 'master'
Fixes #1 - Update README to include information for upgrading to the new version See merge request !2
This commit is contained in:
commit
039c63890c
1 changed files with 14 additions and 15 deletions
29
README
29
README
|
@ -4,7 +4,20 @@ Common Module
|
||||||
The common module installs various functions that are required by other
|
The common module installs various functions that are required by other
|
||||||
modules. This module should be installed before any of the other module.
|
modules. This module should be installed before any of the other module.
|
||||||
|
|
||||||
! Upgrade Notice !
|
! Upgrade Notices !
|
||||||
|
|
||||||
|
The old way of using the common module required that you add 'import common' to
|
||||||
|
a modules.pp file that you included from site.pp. This is no longer the way to
|
||||||
|
do it, and will not work (the import keyword is deprecated and will be removed
|
||||||
|
in puppet 4), also you will get this error if you are doing this:
|
||||||
|
|
||||||
|
Could not parse for environment production: No file(s) found for import of 'common'
|
||||||
|
|
||||||
|
The module_{dir,file} have been moved to common::module_{dir,file} - you will
|
||||||
|
need to change all occurances in your manifests to match the new format
|
||||||
|
|
||||||
|
The replace and delete_lines functions have been removed, you can use file_line
|
||||||
|
from stdlib instead.
|
||||||
|
|
||||||
The 'append_if_no_such_line' define has been replaced with the 'line' define. If
|
The 'append_if_no_such_line' define has been replaced with the 'line' define. If
|
||||||
you are using 'append_if_no_such_line' anywhere in your manifests, you will need
|
you are using 'append_if_no_such_line' anywhere in your manifests, you will need
|
||||||
|
@ -13,20 +26,6 @@ module. The 'line' define is a drop-in replacement and essentially equivalent,
|
||||||
so the transition is quite easy, you should only simply need to change the name
|
so the transition is quite easy, you should only simply need to change the name
|
||||||
in your manifests.
|
in your manifests.
|
||||||
|
|
||||||
To use this module, follow these directions:
|
|
||||||
|
|
||||||
1. Your modules directory will need all the files included in this
|
|
||||||
repository placed under a directory called "common"
|
|
||||||
|
|
||||||
2. Add the following line to manifests/site.pp:
|
|
||||||
|
|
||||||
import "modules.pp"
|
|
||||||
|
|
||||||
3. Add the following line to manifests/modules.pp:
|
|
||||||
|
|
||||||
import "common"
|
|
||||||
|
|
||||||
|
|
||||||
Original author: David Schmitt (mailto:david@dasz.at)
|
Original author: David Schmitt (mailto:david@dasz.at)
|
||||||
Copyright:: Copyright (c) 2007-2009 dasz.at OG
|
Copyright:: Copyright (c) 2007-2009 dasz.at OG
|
||||||
License:: 3-clause BSD
|
License:: 3-clause BSD
|
||||||
|
|
Loading…
Reference in a new issue