mirror of
https://github.com/CPunch/openpunk-ansible.git
synced 2024-11-12 19:10:06 +00:00
36 lines
599 B
YAML
36 lines
599 B
YAML
---
|
|
- name: Upgrade Packages
|
|
apt:
|
|
update_cache: yes
|
|
upgrade: full
|
|
|
|
- name: Install required software
|
|
package:
|
|
name:
|
|
- hugo
|
|
- git
|
|
- nginx
|
|
- tor
|
|
- ufw
|
|
- fail2ban
|
|
- goaccess
|
|
- htop
|
|
- zsh # :D
|
|
- python3-certbot-nginx
|
|
|
|
- name: Setup zsh
|
|
user:
|
|
name: "{{ ansible_user }}"
|
|
shell: /usr/bin/zsh
|
|
|
|
- name: Clone Powerlevel10k theme
|
|
git:
|
|
repo: "https://github.com/romkatv/powerlevel10k.git"
|
|
dest: "/root/powerlevel10k"
|
|
depth: 1
|
|
|
|
- name: Install .zshrc
|
|
copy:
|
|
src: .zshrc
|
|
dest: /root/.zshrc
|
|
force: no |