- Overview
- Module Description
- Setup - The basics of getting started with systemd
- Usage - Configuration options and additional functionality
- Limitations - OS compatibility, etc.
- Development - Guide for contributing to the module
This module provides some basic functionality around systemd within puppet to better allow modules to support both systemd and legacy init systems within the same module.
This module provides a fact to identify systemd-enabled systems and an exec that can be called to reload systemd daemon configurations.
- Nothing
The module will do nothing by itself. It is only to be used as support for other modules.
Check the usage section for details.
The very basic steps needed for a user to get the module up and running.
If your most recent release breaks compatibility or requires particular steps for upgrading, you may wish to include an additional section here: Upgrading (For an example, see http://forge.puppetlabs.com/puppetlabs/firewall).
The most basic usage is as follows (within another module):
include systemd
This will give you access to $::systemd::params::unit_path which is usually /usr/lib/systemd/system or /lib/systemd/system depending on distro.
It will also give you access to the systemd_available fact, which evaluates to 'true' if systemd is available.
There is an exec called 'systemd-daemon-reload' that can be called to refresh configurations when they are changed so it isn't required seperately in each module.
Hopefully this will be unecessary in future puppet releases, but currently there is no way to tell the init system, and no way to auto-reload systemd daemons when they change.
An example usage is below:
if $::systemd_available == 'true' {
file {"${::systemd::params::unit_path}/foo.service":
content => template('foo/foo.service.erb'),
before => Service['foo'],
notify => Exec['systemd-daemon-reload'],
}
systemd::service { 'bar':
description => 'Bar service',
execstart => '/bin/bar',
wants => ['network.target', 'foo.service'],
}
}
service { 'foo':
ensure => running,
after => Exec['systemd-daemon-reload'],
}
service { 'bar':
ensure => running,
}
Works with all Linux distributions! (Untested on most ;)) On non-systemd distributions it will provide the systemd_available fact as 'false', but nothing else (as intended).
Pull requests welcome via github.