Compare commits

...

5 Commits

Author SHA1 Message Date
Daniel San Pedro
d325eae726 Add LSB release checks. This is untested atm. 2024-02-26 23:39:07 -05:00
Techno Tim
25d696c762 Merge branch 'master' into raspbian-cgroups-fix 2024-02-26 22:10:04 -06:00
dependabot[bot]
3b74985767 chore(deps): bump ansible-core from 2.16.3 to 2.16.4 (#459)
Bumps [ansible-core](https://github.com/ansible/ansible) from 2.16.3 to 2.16.4.
- [Release notes](https://github.com/ansible/ansible/releases)
- [Commits](https://github.com/ansible/ansible/compare/v2.16.3...v2.16.4)

---
updated-dependencies:
- dependency-name: ansible-core
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-27 04:05:58 +00:00
Techno Tim
c057a436a1 Merge branch 'master' into raspbian-cgroups-fix 2024-02-26 21:38:29 -06:00
dependabot[bot]
9ace193ade chore(deps): bump pre-commit from 3.6.1 to 3.6.2 (#453)
Bumps [pre-commit](https://github.com/pre-commit/pre-commit) from 3.6.1 to 3.6.2.
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](https://github.com/pre-commit/pre-commit/compare/v3.6.1...v3.6.2)

---
updated-dependencies:
- dependency-name: pre-commit
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2024-02-26 19:31:14 +00:00
2 changed files with 4 additions and 4 deletions

View File

@@ -6,7 +6,7 @@
#
ansible-compat==4.1.11
# via molecule
ansible-core==2.16.3
ansible-core==2.16.4
# via
# -r requirements.in
# ansible-compat
@@ -96,7 +96,7 @@ platformdirs==4.1.0
# via virtualenv
pluggy==1.3.0
# via molecule
pre-commit==3.6.1
pre-commit==3.6.2
# via -r requirements.in
pre-commit-hooks==4.5.0
# via -r requirements.in

View File

@@ -5,9 +5,9 @@
failed_when: false
changed_when: false
- name: Set path to cmdline based on test
- name: Set cmdline path based on Debian version and boot_cmdline_path result
set_fact:
cmdline_path: "{{ (boot_cmdline_path.rc == 0) | ternary('/boot/cmdline.txt', '/boot/firmware/cmdline.txt') }}"
cmdline_path: "{{ (boot_cmdline_path.rc == 0 and ansible_facts['distribution'] == 'Debian' and ansible_facts['distribution_version'] is version('bookworm', '<')) | ternary('/boot/cmdline.txt', '/boot/firmware/cmdline.txt') }}"
- name: Activating cgroup support
lineinfile: