Skip to content
Snippets Groups Projects
Commit 6887ffd6 authored by Lars Beckers's avatar Lars Beckers
Browse files

basic-system: add lsb-release for ansible facts

parent 7300ae6f
No related branches found
No related tags found
No related merge requests found
......@@ -15,3 +15,6 @@
- name: gather network facts once again
setup: gather_subset=network
- name: gather minimal standard facts once again
setup: gather_subset=min
---
- name: ensure /tmp is a tmpfs
mount: name=/tmp src=tmpfs fstype=tmpfs opts=nosuid,rw,noexec state=mounted
mount:
name: /tmp
src: tmpfs
fstype: tmpfs
opts: nosuid,rw,noexec
state: mounted
tags:
- config
- mount
- name: ensure lsb release information is available
apt:
name: lsb-release
state: present
notify:
- gather minimal standard facts once again
tags:
- lsb
- meta: flush_handlers
- include: logging.yml
- meta: flush_handlers
- include: network.yml
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment