387f3bbf6b
* add list of legacy gateways (temporarily) * change backend-scripts branch to ansible * Role server-basic: ensure ffmwu config directory is present * Role service-fastd: add fastd-status script * role service-fastd-mesh: add templating for fastd peer limit configuration
23 lines
456 B
YAML
23 lines
456 B
YAML
---
|
|
- name: ensure common packages are installed
|
|
package:
|
|
name: "{{ item }}"
|
|
state: present
|
|
with_items: "{{ packages }}"
|
|
|
|
- name: ensure vim is default editor
|
|
alternatives:
|
|
name: editor
|
|
path: /usr/bin/vim.basic
|
|
|
|
- name: set timezone to Europe/Berlin
|
|
timezone:
|
|
name: Europe/Berlin
|
|
|
|
- name: create ffmwu custom config dir
|
|
file:
|
|
path: /home/admin/.config
|
|
state: directory
|
|
owner: admin
|
|
group: admin
|
|
mode: 0750
|