Initialize project

This commit is contained in:
Jeckel 2020-10-01 23:50:32 +02:00
當前提交 e525bf9850
共有 3 個文件被更改,包括 32 次插入0 次删除

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
查看文件

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

查看文件

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