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