forked from FF-RGB/ansible
Remove proxmox
This commit is contained in:
parent
9b9a086d51
commit
a7423d02be
@ -1,55 +0,0 @@
|
|||||||
---
|
|
||||||
|
|
||||||
- name: Install misc software
|
|
||||||
apt: name={{ item }}
|
|
||||||
with_items:
|
|
||||||
- dnsutils
|
|
||||||
- git
|
|
||||||
- htop
|
|
||||||
- less
|
|
||||||
- net-tools
|
|
||||||
- openssl
|
|
||||||
- psmisc
|
|
||||||
- pydf
|
|
||||||
- rsync
|
|
||||||
- sudo
|
|
||||||
- vim-nox
|
|
||||||
- zsh
|
|
||||||
- fail2ban
|
|
||||||
|
|
||||||
- name: Install software on KVM VMs
|
|
||||||
apt: name={{ item }}
|
|
||||||
with_items:
|
|
||||||
- acpid
|
|
||||||
- qemu-guest-agent
|
|
||||||
when: ansible_virtualization_role == "guest" and ansible_virtualization_type == "kvm"
|
|
||||||
|
|
||||||
- name: Configure misc software
|
|
||||||
copy: src={{ item.src }} dest={{ item.dest }}
|
|
||||||
with_items:
|
|
||||||
- { src: '.zshrc', dest: '/root/.zshrc' }
|
|
||||||
- { src: '.zshrc.local', dest: '/root/.zshrc.local' }
|
|
||||||
- { src: 'motd', dest: '/etc/motd' }
|
|
||||||
- { src: 'vimrc.local', dest: '/etc/vim/vimrc.local' }
|
|
||||||
|
|
||||||
- name: Set shell for root user
|
|
||||||
user: name=root shell=/bin/zsh
|
|
||||||
|
|
||||||
- name: Disable hibernation/resume
|
|
||||||
copy: src=resume dest=/etc/initramfs-tools/conf.d/resume
|
|
||||||
notify: update-initramfs
|
|
||||||
|
|
||||||
# TODO template /etc/network/interfaces
|
|
||||||
|
|
||||||
- name: Fix network interface names
|
|
||||||
copy: src={{ item }} dest=/etc/systemd/network/{{ item }}
|
|
||||||
with_items:
|
|
||||||
- 50-virtio-kernel-names.link
|
|
||||||
- 99-default.link
|
|
||||||
notify: update-initramfs
|
|
||||||
|
|
||||||
- name: Prevent normal users from running su
|
|
||||||
lineinfile:
|
|
||||||
path: /etc/pam.d/su
|
|
||||||
regexp: '^.*auth\s+required\s+pam_wheel.so$'
|
|
||||||
line: 'auth required pam_wheel.so'
|
|
@ -1,26 +0,0 @@
|
|||||||
---
|
|
||||||
|
|
||||||
- name: Install misc software
|
|
||||||
apt: name={{ item }}
|
|
||||||
with_items:
|
|
||||||
- dnsutils
|
|
||||||
- htop
|
|
||||||
- ipmitool
|
|
||||||
- less
|
|
||||||
- rsync
|
|
||||||
- vim-nox
|
|
||||||
- zsh
|
|
||||||
|
|
||||||
- name: Configure misc software
|
|
||||||
copy: src={{ item.src }} dest={{ item.dest }}
|
|
||||||
with_items:
|
|
||||||
- { src: '.zshrc', dest: '/root/.zshrc' }
|
|
||||||
- { src: '.zshrc.local', dest: '/root/.zshrc.local' }
|
|
||||||
- { src: 'motd', dest: '/etc/motd' }
|
|
||||||
- { src: 'vimrc.local', dest: '/etc/vim/vimrc.local' }
|
|
||||||
|
|
||||||
- name: Set shell for root user
|
|
||||||
user: name=root shell=/bin/zsh
|
|
||||||
|
|
||||||
- name: Set vm.swappiness
|
|
||||||
sysctl: name=vm.swappiness value=10
|
|
@ -1,22 +1,55 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
- name: Cleanup
|
- name: Install misc software
|
||||||
apt: autoclean=yes
|
apt: name={{ item }}
|
||||||
when: ansible_os_family == 'Debian'
|
with_items:
|
||||||
|
- dnsutils
|
||||||
|
- git
|
||||||
|
- htop
|
||||||
|
- less
|
||||||
|
- net-tools
|
||||||
|
- openssl
|
||||||
|
- psmisc
|
||||||
|
- pydf
|
||||||
|
- rsync
|
||||||
|
- sudo
|
||||||
|
- vim-nox
|
||||||
|
- zsh
|
||||||
|
- fail2ban
|
||||||
|
|
||||||
- name: Gather package facts
|
- name: Install software on KVM VMs
|
||||||
package_facts:
|
apt: name={{ item }}
|
||||||
manager: apt
|
with_items:
|
||||||
when: ansible_os_family == 'Debian'
|
- acpid
|
||||||
|
- qemu-guest-agent
|
||||||
|
when: ansible_virtualization_role == "guest" and ansible_virtualization_type == "kvm"
|
||||||
|
|
||||||
- name: Proxmox
|
- name: Configure misc software
|
||||||
include: Proxmox.yml
|
copy: src={{ item.src }} dest={{ item.dest }}
|
||||||
when: ansible_os_family == 'Debian' and 'pve-manager' in ansible_facts.packages
|
with_items:
|
||||||
|
- { src: '.zshrc', dest: '/root/.zshrc' }
|
||||||
|
- { src: '.zshrc.local', dest: '/root/.zshrc.local' }
|
||||||
|
- { src: 'motd', dest: '/etc/motd' }
|
||||||
|
- { src: 'vimrc.local', dest: '/etc/vim/vimrc.local' }
|
||||||
|
|
||||||
- name: Debian
|
- name: Set shell for root user
|
||||||
include: Debian.yml
|
user: name=root shell=/bin/zsh
|
||||||
when: ansible_os_family == 'Debian' and 'pve-manager' not in ansible_facts.packages
|
|
||||||
|
|
||||||
- name: FreeBSD
|
- name: Disable hibernation/resume
|
||||||
include: FreeBSD.yml
|
copy: src=resume dest=/etc/initramfs-tools/conf.d/resume
|
||||||
when: ansible_distribution == 'FreeBSD'
|
notify: update-initramfs
|
||||||
|
|
||||||
|
# TODO template /etc/network/interfaces
|
||||||
|
|
||||||
|
- name: Fix network interface names
|
||||||
|
copy: src={{ item }} dest=/etc/systemd/network/{{ item }}
|
||||||
|
with_items:
|
||||||
|
- 50-virtio-kernel-names.link
|
||||||
|
- 99-default.link
|
||||||
|
notify: update-initramfs
|
||||||
|
|
||||||
|
- name: Prevent normal users from running su
|
||||||
|
lineinfile:
|
||||||
|
path: /etc/pam.d/su
|
||||||
|
regexp: '^.*auth\s+required\s+pam_wheel.so$'
|
||||||
|
line: 'auth required pam_wheel.so'
|
||||||
|
Loading…
Reference in New Issue
Block a user