15 lines
309 B
YAML
15 lines
309 B
YAML
|
---
|
||
|
- hosts: '{{ variable_host | default("lab15_standard") }}'
|
||
|
gather_facts: no
|
||
|
connection: local
|
||
|
become: yes
|
||
|
tasks:
|
||
|
- name: read Geany repository
|
||
|
apt_repository:
|
||
|
repo: ppa:geany-dev/ppa
|
||
|
|
||
|
- name: install geany
|
||
|
apt:
|
||
|
pkg:
|
||
|
- geany
|