-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy_bibBox.yml
31 lines (29 loc) · 1.03 KB
/
deploy_bibBox.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
---
- name: Playbook Readme
hosts: bibBox
become: false
gather_facts: false
tasks:
- name: Display play usage information
ansible.builtin.debug:
msg:
- " This playbook installs and configures Remote Access and Software for the Library PC "
- " "
- " The following tags are available: "
- " "
- " * deploy - deploy the library box setup "
- " you must specify at least one of them with -t <tag> "
delegate_to: localhost
- name: End play
ansible.builtin.meta: end_play
- name: Deploy BibBox
hosts: bibBox
tags:
- never
- deploy
become: true
roles:
# - role: update_authorized_keys
- role: system-base
- role: ohmyzsh
- role: bib-setup