pass bo_client to ember 2.8, adjust for the hack around the aupac-typeahead bug in 2.8 (c.f. https://github.com/aupac/ember-aupac-typeahead/issues/23)
# Systemd
[](https://forge.puppetlabs.com/camptocamp/systemd)
[](https://travis-ci.org/camptocamp/puppet-systemd)
## Overview
This module declares exec resources that you can use when you change systemd units or configuration files.
## Examples
### systemctl --daemon-reload
```puppet
include ::systemd
file { '/usr/lib/systemd/system/foo.service':
ensure => file,
owner => 'root',
group => 'root',
mode => '0644',
source => "puppet:///modules/${module_name}/foo.service",
} ~>
Exec['systemctl-daemon-reload']
```
### systemd-tmpfiles --create
```puppet
include ::systemd
file { '/etc/tmpfiles.d/foo.conf':
ensure => file,
owner => 'root',
group => 'root',
mode => '0644',
source => "puppet:///modules/${module_name}/foo.conf",
} ~>
Exec['systemd-tmpfiles-create']
```