- Overview
- Module Description - What the module does and why it is useful
- Setup - The basics of getting started with wintersmith
- Usage - Configuration options and additional functionality
- Reference - An under-the-hood peek at what the module is doing and how
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
This module helps install wintersmith and maintain any number of wintersmith sites.
This module depends on nodejs to install wintersmith, and vcsrepo to actually checkout your blog!
include wintersmith
after that, we can define a blog:
wintersmith::site { 'blag':
ensure => 'latest',
source => 'git://github.com/igalic/blag',
target => '/srv/web/blag.esat',
}
package_name
Package name of wintersmith. (Default: wintersmith
)
package_ensure
Ensure wintersmith package is installed (or uninstalled or in a specific
version. (Default: present
)
path
Default Exec path (where to find the wintersmith binary) (Default:
/usr/bin:/bin:/usr/local/bin
)
ensure
Ensure vcs is present (or absent, or latest). (Default: present
)
source source URI to the vcs repository. (This parameter must be set)
target target dir where to put the vcs repository. (This parameter must be set)
vcs_provider
VCS provider. (Default: git
)
vcs_revision
VCS revision. (Default: master
)
Tested on Ubuntu. If vcsrepo, and npm runs on it, and you can adapt the path
,
it should on run on your OS!
Fork, branch, patch, pull request, etc.