Initialize project
This commit is contained in:
commit
e525bf9850
3
deploy.sh
Executable file
3
deploy.sh
Executable file
@ -0,0 +1,3 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
|
||||||
|
ansible-playbook raspberry-lab.yml --ask-become-pass
|
7
raspberry-lab.yml
Normal file
7
raspberry-lab.yml
Normal file
@ -0,0 +1,7 @@
|
|||||||
|
---
|
||||||
|
- name: "Install Raspberry Lab"
|
||||||
|
hosts: localhost
|
||||||
|
connection: local
|
||||||
|
become_method: sudo
|
||||||
|
roles:
|
||||||
|
- role: common
|
22
roles/common/tasks/main.yml
Normal file
22
roles/common/tasks/main.yml
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
---
|
||||||
|
- name: "Install common packages"
|
||||||
|
apt:
|
||||||
|
name:
|
||||||
|
- apt-transport-https
|
||||||
|
- curl
|
||||||
|
- emacs
|
||||||
|
- geany
|
||||||
|
- git
|
||||||
|
- gzip
|
||||||
|
- htop
|
||||||
|
- lsb-release
|
||||||
|
- mc
|
||||||
|
- net-tools
|
||||||
|
- rsync
|
||||||
|
- vim
|
||||||
|
- wget
|
||||||
|
- whois
|
||||||
|
- xclip
|
||||||
|
state: present
|
||||||
|
update_cache: yes
|
||||||
|
become: yes
|
Loading…
Reference in New Issue
Block a user