Skip to content
Snippets Groups Projects
README.md 10.6 KiB
Newer Older
Chris Croome's avatar
Chris Croome committed
# Webarchitects systemd Ansible role
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
[![pipeline status](https://git.coop/webarch/systemd/badges/main/pipeline.svg)](https://git.coop/webarch/systemd/-/commits/main)

Chris Croome's avatar
Chris Croome committed
`systemd` is a [System and Service Manager](https://systemd.io/) that _"runs as PID 1 and starts the rest of the system"_.

Chris Croome's avatar
Chris Croome committed
This repo contains an Ansible role for configuring [systemd on Debian](https://manpages.debian.org/systemd/systemd.1.en.html), this role has been designed to be as generic as possible in order to enable to it be used to configure any systemd service, by default it configures `systemd-timesyncd`.
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
On Debian Buster [backports](https://backports.debian.org/Instructions/) is required to get the [latest version of systemd](https://packages.debian.org/buster-backports/systemd), the [Webarchitects apt Ansible role](https://git.coop/webarch/apt) can be used to enable backports.
Chris Croome's avatar
Chris Croome committed
## Role variables

Chris Croome's avatar
Chris Croome committed
See the [defaults/main.yml](defaults/main.yml) file for the default variables and [meta/argument_specs.yml](meta/argument_specs.yml) for the variable specification.
Chris Croome's avatar
Chris Croome committed

### systemd

Chris Croome's avatar
Chris Croome committed
Set the `systemd` variable to `false` to prevent any tasks in this role being run.

The `systemd` variable defaults to `true`.
Chris Croome's avatar
Chris Croome committed

### systemd_delete_broken_symlinks

Chris Croome's avatar
Chris Croome committed
The `systemd_delete_broken_symlinks` variable is a boolean, when `true` is results in this role deleting broken symlinks found in the `/etc/systemd` directory, it defaults to `false`.

### systemd_delete_devnull_symlinks

Chris Croome's avatar
Chris Croome committed
The `systemd_delete_devnull_symlinks` variable is a boolean, when `true` is results in this role deleting symlinks that point to `/dev/null` in the `/etc/systemd` directory, it defaults to `false`.
Chris Croome's avatar
Chris Croome committed
### systemd_timesyncd_reboot

Chris Croome's avatar
Chris Croome committed
The `systemd_timesyncd_reboot` variable is a boolean, when `true` servers which have incorrect clocks will be rebooted by this role in an attempt to correct their clocks, it defaults to `false`.
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
This variable is only used if there is a item in the `systemd_units` list with the `name` `systemd-timesyncd`.
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
### systemd_tz

Chris Croome's avatar
Chris Croome committed
The `systemd_tz` variable is a string for the time zone to be used when configuring `systemd-timesyncd`, (the hardware clock is set to UTC), it defaults to `Etc/UTC`, which is fine for a server however for a desktop or laptop you will want to use a value like `Europe/London`.
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
This variable is only used if there is a item in the `systemd_units` list with the `name` `systemd-timesyncd`.
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
### systemd_units

Chris Croome's avatar
Chris Croome committed
`systemd_units` is a list of systemd units to configure, for example:
Chris Croome's avatar
Chris Croome committed

```yaml
systemd_units:
  - name: systemd-timesyncd
    files:
      - path: /etc/systemd/timesyncd.conf
        comment: |
          Entries in this file show the compile time defaults.
          You can change settings by editing this file.
          Defaults can be restored by simply deleting this file.
          See timesyncd.conf(5) for details.
        conf:
          Time:
            NTP: 0.pool.ntp.org 1.pool.ntp.org 3.pool.ntp.org 2.pool.ntp.org
        state: present
Chris Croome's avatar
Chris Croome committed
    pkgs:
      - systemd-timesyncd
    state: present
    unit_state: started
    verify: systemd-timesyncd.service
Chris Croome's avatar
Chris Croome committed
  - name: systemd-networkd
    files:
      - path: /etc/systemd/network/eth0.network
        state: templated
        conf:
          Match:
            Name: eth0
            Type: ether
          Network:
            Address:
              - 192.168.0.2/24
              - 192.168.0.3/24
            Gateway: 192.168.0.1
    verify: networking.service
```

Chris Croome's avatar
Chris Croome committed
The `systemd_units` list variables:
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
#### name

Chris Croome's avatar
Chris Croome committed
The `name` of the systemd unit to configure.

The `name` is used as the `name` for the [Ansible systemd module](https://docs.ansible.com/ansible/latest/collections/ansible/builtin/systemd_module.html):

Chris Croome's avatar
Chris Croome committed
> This parameter takes the name of exactly one unit to work with.
Chris Croome's avatar
Chris Croome committed
>
> When no extension is given, it is implied to a `.service` as systemd.
>
> When using in a chroot environment you always need to specify the name of the unit with the extension. For example, `crond.service`.

Chris Croome's avatar
Chris Croome committed
See also the [systemd unit configuration documentation](https://manpages.debian.org/systemd/systemd.unit.5.en.html).
Chris Croome's avatar
Chris Croome committed

You can generate a YAML list of all the unit names:

```bash
Chris Croome's avatar
Chris Croome committed
systemctl list-unit-files | jc --systemctl-luf | jp [].unit_file | yq -P 
Chris Croome's avatar
Chris Croome committed
```
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
#### files
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
The `files` variable is a list of files, that will be configured, the list uses the following variables:
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
##### path

Chris Croome's avatar
Chris Croome committed
The `path` variable is the full filesystem path to the file to configure, this variables is required.
Chris Croome's avatar
Chris Croome committed

##### comment

Chris Croome's avatar
Chris Croome committed
The `comment` variable can be used for adding commented text to the top of the file.
Chris Croome's avatar
Chris Croome committed

##### conf
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
The `conf` dictionary defines the systemd file variables, as a YAML dictionary.

The depth of the dictionary defines the type of file generated, for example to generate a systemd environment file (`conf` depth one):
Chris Croome's avatar
Chris Croome committed

```yaml
conf:
  FOO: bar
```

Chris Croome's avatar
Chris Croome committed
And to generate generate a systemd unit file (`conf` depth two):
Chris Croome's avatar
Chris Croome committed

```yaml
conf:
  Unit:
    Description: Docker Compose container starter
```

Chris Croome's avatar
Chris Croome committed
And when duplicate entries are allowed a YAML list is used (`conf` depth three):

```yaml
conf:
  Network:
    Address:
      - 192.168.0.2/24
      - 192.168.0.3/24 
```

The list items are are converted into duplicated keys:

```ini
[Network]
Address=192.168.0.2/24
Address=192.168.0.3/24
```

Chris Croome's avatar
Chris Croome committed
Note that the documentation for the [general syntax of systemd configuration files](https://manpages.debian.org/systemd/systemd.syntax.7.en.html) includes:

> Boolean arguments used in configuration files can be written in various formats. For positive settings the strings `1`, `yes`, `true` and `on` are equivalent. For negative settings, the strings `0`, `no`, `false` and `off` are equivalent.

If you want a value that is used as a boolean in a systemd unit file to be treated as a string you need to quote it, for example `"yes2`, if you don't quote it then Ansible will consider numbers to be integers in the case of `1` or `0` and unquoted `true` and `false` will be booleans, the unit template, [templates/unit.j2](templates/unit.j2) is set to lower case booleans to avoid them becoming `True` and `False`.

Chris Croome's avatar
Chris Croome committed
When files are updated or deleted backups are created based on the existing file name but prefixed with a leading `.` and suffixed with a timestamp in ISO8601 format and the file extension `.bak`.

Chris Croome's avatar
Chris Croome committed
##### state

The `files` can optionally have one of four optional states set:

* `absent` - the file will be deleted.
Chris Croome's avatar
Chris Croome committed
* `edited` - the existing file will be edited using the [Ansible ini module](https://docs.ansible.com/ansible/latest/collections/community/general/ini_file_module.html), as long as there are no duplicates, if there are the file will be templated.
* `present` - if the file exists it will be edited using the [Ansible ini module](https://docs.ansible.com/ansible/latest/collections/community/general/ini_file_module.html), as long as there are no duplicates, if there are duplicates or it doesn't exist it will be created using the [templates/unit.j2](templates/unit.j2) template.
Chris Croome's avatar
Chris Croome committed
* `templated` - the file will be created if it does not exist or updated if it already exists using the [templates/unit.j2](templates/unit.j2) template.

If the `files` `state` is not set it defaults to `present`. The `edited` option can not remove variables and, unlike the `templated` option, it preserves existing comments.

#### pkgs

Chris Croome's avatar
Chris Croome committed
The `pkgs` variable is a list of `.deb` packages which will be installed when the `state` is present and removed when `absent`.

Chris Croome's avatar
Chris Croome committed
#### state
Chris Croome's avatar
Chris Croome committed

The `systemd_units` list elements can have a `state` of `absent` or `present`.

#### unit_enabled

A boolean, `unit_enabled` determins if the untit is enabled or not.
Chris Croome's avatar
Chris Croome committed

#### unit_state

The `unit_state` variable is used for the [Ansible systemd module state](https://docs.ansible.com/ansible/latest/collections/ansible/builtin/systemd_module.html#parameter-state) so it can be one of `reloaded`, `restarted`, `started` or `stopped`.
Chris Croome's avatar
Chris Croome committed

#### verify

A service name to be passed to `systemd-analyze verify`.

Chris Croome's avatar
Chris Croome committed
A list of services that can be verified can be generated using:

```bash
systemctl list-unit-files | jc --systemctl-luf | jp "[?state == 'enabled'].unit_file"
```

Chris Croome's avatar
Chris Croome committed
This role can be included in another role along these lines (this has been based on [this gist](https://gist.github.com/Luzifer/7c54c8b0b61da450d10258f0abd3c917)):

```yaml
- name: Include systemd role
  ansible.builtin.include_role:
    name: systemd
    tasks_from: unit_present.yml
  vars:
    systemd_unit:
      name: docker-compose
      files:
Chris Croome's avatar
Chris Croome committed
        - path: /etc/systemd/docker-compose.conf
          conf:
            DOCKER_COMPOSE_VERSION: native
        - path: /etc/systemd/service/docker-compose.service
          conf:
            Unit:
              Description: Docker Compose container starter
              After: docker.service network-online.target
              Requires: docker.service network-online.target
            Service:
Chris Croome's avatar
Chris Croome committed
              User: mailcow
              Group: mailcow
Chris Croome's avatar
Chris Croome committed
              EnvironmentFile: /etc/systemd/docker-compose.conf
              WorkingDirectory: /opt/mailcow-dockerized
              Type: oneshot
              RemainAfterExit: "yes"
              ExecStart: docker compose up -d
              ExecStop: docker compose down
            Install:
              WantedBy: multi-user.target
```

Chris Croome's avatar
Chris Croome committed
## Notes
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
You can read existing systemd files as YAML on the command line using [jc](https://github.com/kellyjonbrazil/jc), for example:
Chris Croome's avatar
Chris Croome committed

```bash
cat /etc/systemd/timesyncd.conf | jc --ini -py
Chris Croome's avatar
Chris Croome committed
```
```yaml
Chris Croome's avatar
Chris Croome committed
---
Time:
  NTP: 0.pool.ntp.org 1.pool.ntp.org 3.pool.ntp.org 2.pool.ntp.org
```

Chris Croome's avatar
Chris Croome committed
Note that the [jc --ini parser](https://kellyjonbrazil.github.io/jc/docs/parsers/ini) doesn't support duplicate keys, however the `--ini-dup` parset that is due to be released in version `1.22.5` does, however it returms all values as a list, for example:

```bash
cat /etc/systemd/timesyncd.conf | jc --ini-dup -py
```
```yaml
---
Time:
  NTP:
  - 0.pool.ntp.org 1.pool.ntp.org 2.pool.ntp.org 3.pool.ntp.org
```
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
## Dependencies

This role requires Ansible `2.13` or newer, [JC](https://pypi.org/project/jc/) and [JMESPath](https://pypi.org/project/jmespath/) to be installed using `pip3` on the Ansible controller.
Chris Croome's avatar
Chris Croome committed

Chris Croome's avatar
Chris Croome committed
## Repository
Chris Croome's avatar
Chris Croome committed

The primary URL of this repo is [`https://git.coop/webarch/systemd`](https://git.coop/webarch/systemd) however it is also [mirrored to GitHub](https://github.com/webarch-coop/ansible-role-systemd) and [available via Ansible Galaxy](https://galaxy.ansible.com/chriscroome/systemd).

If you use this role please use a tagged release, see [the release notes](https://git.coop/webarch/systemd/-/releases).

## Copyright

Copyright 2019-2023 Chris Croome, <[chris@webarchitects.co.uk](mailto:chris@webarchitects.co.uk)>.
Chris Croome's avatar
Chris Croome committed

This role is released under [the same terms as Ansible itself](https://github.com/ansible/ansible/blob/devel/COPYING), the [GNU GPLv3](LICENSE).