Initialize project

このコミットが含まれているのは:
Jeckel 2020-10-01 23:50:32 +02:00
コミット e525bf9850
3個のファイルの変更32行の追加0行の削除

3
deploy.sh 実行可能ファイル
ファイルの表示

@ -0,0 +1,3 @@
#!/bin/bash
ansible-playbook raspberry-lab.yml --ask-become-pass

7
raspberry-lab.yml ノーマルファイル
ファイルの表示

@ -0,0 +1,7 @@
---
- name: "Install Raspberry Lab"
hosts: localhost
connection: local
become_method: sudo
roles:
- role: common

22
roles/common/tasks/main.yml ノーマルファイル
ファイルの表示

@ -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