2019-06-09 00:11:06 -04:00
---
#
# First run check
#
2019-06-18 10:47:40 -04:00
- name : check if this is a new instance
shell : "echo 'bootstrapped' > /etc/pvc-install.base"
2019-06-09 00:11:06 -04:00
args :
2019-06-18 10:47:40 -04:00
creates : /etc/pvc-install.base
register : newhost_check
tags : always
- name : set newhost fact
set_fact :
newhost : yes
when : newhost_check.changed
tags : always
2020-04-06 13:55:51 -04:00
#
# Remove obsolete issue-gen
#
2021-02-02 12:34:25 -05:00
- name : remove obsolete issue-gen script from PVC installer
2020-04-06 13:55:51 -04:00
file :
dest : /etc/network/if-up.d/issue-gen
state : absent
2021-02-02 12:34:25 -05:00
when : newhost is defined and newhost
tags : always
2019-06-09 00:11:06 -04:00
#
# Install custom fact scripts
#
- name : create facts directory
file :
dest : "/etc/ansible/facts.d"
state : directory
recurse : yes
2021-02-02 12:34:25 -05:00
tags : base-ansible
2019-06-09 00:11:06 -04:00
- name : install custom facts
template :
src : "etc/ansible/facts.d/{{ item }}.fact.j2"
dest : "/etc/ansible/facts.d/{{ item }}.fact"
mode : 0755
register : installed_facts
with_items :
- host_id
- host_group
- dhcp_status
2021-02-02 12:34:25 -05:00
tags : base-ansible
2019-06-09 00:11:06 -04:00
2019-06-17 21:59:21 -04:00
- name : regather facts
2019-06-09 00:11:06 -04:00
setup :
when : installed_facts.changed
2021-02-02 12:34:25 -05:00
tags : base-ansible
2019-06-09 00:11:06 -04:00
- debug :
var : ansible_local.host_group
verbosity : 1
2021-02-02 12:34:25 -05:00
tags : always
2019-06-09 00:11:06 -04:00
- debug :
var : ansible_local.host_id
verbosity : 1
2021-02-02 12:34:25 -05:00
tags : always
2019-06-09 00:11:06 -04:00
- debug :
var : ansible_local.dhcp_status
verbosity : 1
2021-02-02 12:34:25 -05:00
tags : always
2019-06-09 00:11:06 -04:00
#
# Configure APT
#
- name : install apt config files
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
with_items :
- { src : "etc/apt/apt.conf.d/10norecommends.j2" , dest : "/etc/apt/apt.conf.d/10norecommends" }
- { src : "etc/apt/preferences.d/pins.j2" , dest : "/etc/apt/preferences.d/pins" }
2021-06-05 00:56:02 -04:00
- { src : "etc/apt/sources.list.{{ ansible_machine }}.{{ ansible_lsb.codename }}.j2" , dest : "/etc/apt/sources.list" }
2021-02-02 12:34:25 -05:00
tags : base-apt
2019-06-09 00:11:06 -04:00
2019-06-10 15:07:18 -04:00
- name : add key for bonilan repo
apt_key :
url : "https://repo.bonifacelabs.net/debian/bonifacelabs_signing_key.pub"
id : "83D07192314835D4"
state : present
2021-02-02 12:34:25 -05:00
tags : base-apt
2019-06-10 15:07:18 -04:00
2019-06-09 00:11:06 -04:00
#
# Safe apt upgrades (on first install only)
#
- name : apt update
apt :
update-cache : yes
2021-02-02 12:34:25 -05:00
when : newhost is defined and newhost
tags : base-apt
2019-06-09 00:11:06 -04:00
- name : aptitude safe upgrade with autoremove
apt :
update_cache : yes
autoremove : yes
upgrade : safe
2019-06-18 10:47:40 -04:00
when : newhost is defined and newhost
2021-02-02 12:34:25 -05:00
tags : base-apt
2019-06-09 00:11:06 -04:00
- name : install dbus
apt :
name :
- dbus
state : latest
2019-06-18 10:47:40 -04:00
when : newhost is defined and newhost
2021-02-02 12:34:25 -05:00
tags : base-apt
2019-06-09 00:11:06 -04:00
- name : clean out apt cache
file :
path : "/var/cache/apt/archives"
state : absent
2019-06-18 10:47:40 -04:00
when : newhost is defined and newhost
2021-02-02 12:34:25 -05:00
tags : base-apt
2019-06-09 00:11:06 -04:00
#
# Purge unneeded packages
#
- name : remove unneeded packages
apt :
name :
- exim4
- exim4-base
- exim4-config
- exim4-daemon-light
- joe
state : absent
purge : yes
autoremove : yes
2021-02-02 12:34:25 -05:00
tags : base-packages
2019-06-09 00:11:06 -04:00
- name : set override debconf selections
shell : 'echo "{{ item }}" | debconf-set-selections'
with_items :
- "wireshark-common wireshark-common/install-setuid boolean true"
2021-02-02 12:34:25 -05:00
tags : base-packages
2019-06-09 00:11:06 -04:00
- name : install common packages (all arch)
apt :
name :
- debconf-utils
- iptables
- locales
- acpid
- acpi-support-base
- rsync
- bash
- bash-completion
- net-tools
2020-10-05 16:10:10 -04:00
- pciutils
- usbutils
2019-06-09 00:11:06 -04:00
- check-mk-agent
- dns-root-data
- bind9-host
- dnsutils
2021-04-08 13:46:30 -04:00
- whois
2019-06-09 00:11:06 -04:00
- postfix
- ntp
- openssh-client
- openssh-server
- libpam-systemd
- fail2ban
- ca-certificates
- openssl
- sudo
- rsyslog
- logrotate
- man
- less
- vim
2020-01-13 09:17:31 -05:00
- nano
2019-06-09 00:11:06 -04:00
- git
2019-06-10 15:07:18 -04:00
- vlan
- bridge-utils
- ifenslave
2019-06-09 00:11:06 -04:00
- nmap
- netcat-openbsd
- htop
- psmisc
- dstat
- iotop
- lsof
- jnettop
- iperf
- sysstat
- binutils
- deborphan
- wget
- curl
- gawk
2020-05-12 11:15:01 -04:00
- uuid-runtime
2019-06-09 00:11:06 -04:00
- mmv
- pv
- bc
- reptyr
- sharutils
- tcptraceroute
- nethogs
- strace
- tshark
- acl
- bzip2
2021-01-28 13:34:58 -05:00
- lzop
- xz-utils
2019-06-09 00:11:06 -04:00
- haveged
- linux-image-amd64
- linux-headers-amd64
2021-02-02 12:34:25 -05:00
tags : base-packages
- name : install cleanup scripts
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
mode : 0755
with_items :
- { src : "usr/local/sbin/kernel-cleanup.sh.j2" , dest : "/usr/local/sbin/kernel-cleanup.sh" }
- { src : "usr/local/sbin/dpkg-cleanup.sh.j2" , dest : "/usr/local/sbin/dpkg-cleanup.sh" }
tags : base-packages
2019-06-09 00:11:06 -04:00
#
# System configuration
#
2019-07-04 11:19:24 -04:00
# networking
- name : install base interfaces file
template :
src : etc/network/interfaces.j2
dest : /etc/network/interfaces
2021-02-02 12:34:25 -05:00
tags : base-network
2019-07-04 11:19:24 -04:00
- name : install per-interface files
template :
src : etc/network/interfaces-perif.j2
dest : /etc/network/interfaces.d/{{ network.key }}
with_dict : "{{ networks }}"
loop_control :
loop_var : network
2021-02-02 12:34:25 -05:00
tags : base-network
2019-07-04 11:19:24 -04:00
2019-06-09 00:11:06 -04:00
# locale
- name : install locale config files
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
notify :
- generate locales
with_items :
- { src : "etc/default/locale.j2" , dest : "/etc/default/locale" }
- { src : "etc/locale.gen.j2" , dest : "/etc/locale.gen" }
2021-02-02 12:34:25 -05:00
tags : base-system
2019-06-09 00:11:06 -04:00
- name : set timezone
file :
2019-10-31 16:03:24 -04:00
src : /usr/share/zoneinfo/{{ timezone_location }}
2019-06-09 00:11:06 -04:00
dest : /etc/localtime
state : link
force : yes
2021-02-02 12:34:25 -05:00
tags : base-system
2019-06-09 00:11:06 -04:00
2021-02-02 12:34:25 -05:00
# sysctl
- name : install sysctl tweaks
2019-06-09 00:11:06 -04:00
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
with_items :
2021-02-02 12:34:25 -05:00
- { src : "etc/sysctl.d/pvc.conf.j2" , dest : "/etc/sysctl.d/pvc.conf" }
tags : base-system
2019-06-09 00:11:06 -04:00
2021-02-02 12:34:25 -05:00
- name : activate sysctl tweaks
shell : "sysctl -p {{ item }}"
with_items :
- /etc/sysctl.d/pvc.conf
tags : base-system
# sudo
- name : write the sudoers file
template :
src : "etc/sudoers.j2"
dest : "/etc/sudoers"
mode : 0440
tags : base-system
# dns
- name : write the hosts config
2019-06-09 00:11:06 -04:00
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
with_items :
2021-02-02 12:34:25 -05:00
- { src : "etc/hosts.j2" , dest : "/etc/hosts" }
tags : base-dns
2019-06-09 00:11:06 -04:00
2021-02-02 12:34:25 -05:00
- name : write the resolver configs
2019-06-09 00:11:06 -04:00
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
with_items :
2021-02-02 12:34:25 -05:00
- { src : "etc/resolv.conf.j2" , dest : "/etc/resolv.conf" }
- { src : "etc/dhcp/dhclient-enter-hooks.d/noresolv.j2" , dest : "/etc/dhcp/dhclient-enter-hooks.d/noresolv" }
tags : base-dns
2019-06-09 00:11:06 -04:00
# syslog
- name : install rsyslog and logrotate configs
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
notify :
- restart rsyslog
with_items :
- { src : "etc/rsyslog.conf.j2" , dest : "/etc/rsyslog.conf" }
- { src : "etc/logrotate.d/rsyslog.j2" , dest : "/etc/logrotate.d/rsyslog" }
2021-02-02 12:34:25 -05:00
tags : base-syslog
2019-06-09 00:11:06 -04:00
- name : set journalctl persistence
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
mode : 0644
with_items :
- { src : "etc/systemd/journald.conf.j2" , dest : "/etc/systemd/journald.conf" }
2021-02-02 12:34:25 -05:00
tags : base-syslog
2019-06-09 00:11:06 -04:00
# cron
- name : install crontab
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
mode : 0755
with_items :
- { src : "etc/crontab.j2" , dest : "/etc/crontab" }
2021-02-02 12:34:25 -05:00
tags : base-cron
2019-06-09 00:11:06 -04:00
# mta
- name : install postfix generic config
template :
src : "etc/postfix/main.cf.j2"
dest : "/etc/postfix/main.cf"
notify :
- restart postfix
2021-02-02 12:34:25 -05:00
tags : base-mta
2019-06-09 00:11:06 -04:00
- name : touch the postfix aliases file
file :
dest : /etc/postfix/aliases
state : touch
2021-02-02 12:34:25 -05:00
tags : base-mta
2019-06-09 00:11:06 -04:00
- name : install local alias maps for various users
lineinfile :
dest : "/etc/aliases"
regexp : "^{{ item }}:"
line : "{{ item }}: {{ username_email_root }}"
state : present
with_items :
- root
- postmaster
- amavis
- clamav
notify :
- newaliases
2021-02-02 12:34:25 -05:00
tags : base-mta
2019-06-09 00:11:06 -04:00
# ntp
- name : write the NTP config file
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
notify :
- restart ntp
with_items :
- { src : "etc/ntp.conf.j2" , dest : "/etc/ntp.conf" }
2021-02-02 12:34:25 -05:00
tags : base-time
2019-06-09 00:11:06 -04:00
# ssl
- name : ensure haveged is running
service :
name : haveged
state : started
2021-02-02 12:34:25 -05:00
tags : base-ssl
2019-06-09 00:11:06 -04:00
- name : generate diffie-hellman parameters
command : openssl dhparam -out /etc/ssl/dhparams.pem 2048
args :
creates : /etc/ssl/dhparams.pem
2021-02-02 12:34:25 -05:00
tags : base-ssl
2019-06-09 00:11:06 -04:00
- name : correct permissions on dhparams
file :
dest : /etc/ssl/dhparams.pem
mode : 0440
2021-02-02 12:34:25 -05:00
tags : base-ssl
2019-06-09 00:11:06 -04:00
# ssh
- name : write the sshd_config files
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
notify :
- restart ssh
with_items :
- { src: 'etc/ssh/ssh_config.j2', dest : '/etc/ssh/ssh_config' }
- { src: 'etc/ssh/sshd_config.j2', dest : '/etc/ssh/sshd_config' }
- { src: 'etc/ssh/shosts.equiv.j2', dest : '/etc/ssh/shosts.equiv' }
- { src: 'etc/ssh/ssh_known_hosts.j2', dest : '/etc/ssh/ssh_known_hosts' }
2021-02-02 12:34:25 -05:00
tags : base-ssh
2019-06-09 00:11:06 -04:00
- name : write sshd pam.d config
template :
src : "etc/pam.d/sshd.j2"
dest : "/etc/pam.d/sshd"
2021-02-02 12:34:25 -05:00
tags : base-ssh
2019-06-09 00:11:06 -04:00
- name : remove unneeded SSH keys (leave only RSA and ED25519)
file :
name : "{{ item }}"
state : "absent"
with_items :
- /etc/ssh/ssh_host_dsa_key
- /etc/ssh/ssh_host_dsa_key.pub
- /etc/ssh/ssh_host_ecdsa_key
- /etc/ssh/ssh_host_ecdsa_key.pub
notify :
- restart ssh
2021-02-02 12:34:25 -05:00
tags : base-ssh
2019-06-09 00:11:06 -04:00
- name : set permissions on rsa and ed25519 host keys (just in case they're wrong)
file :
name : "/etc/ssh/{{ item.name }}"
mode : "{{ item.mode }}"
with_items :
- { name: 'ssh_host_rsa_key', mode : '600' }
- { name: 'ssh_host_rsa_key.pub', mode : '644' }
- { name: 'ssh_host_ed25519_key', mode : '600' }
- { name: 'ssh_host_ed25519_key.pub', mode : '644' }
2021-02-02 12:34:25 -05:00
tags : base-ssh
2019-06-09 00:11:06 -04:00
# bash
- name : write the bash.bashrc config file
template :
src : "etc/bash.bashrc.j2"
dest : "/etc/bash.bashrc"
2021-02-02 12:34:25 -05:00
tags : base-shell
2019-06-09 00:11:06 -04:00
# motd
2020-11-17 12:41:02 -05:00
- name : ensure update-motd and profile.d scripts are present
2019-06-09 00:11:06 -04:00
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
mode : 0755
with_items :
- { src : "usr/local/sbin/update-motd.sh.j2" , dest : "/usr/local/sbin/update-motd.sh" }
- { src : "etc/profile.d/w.sh.j2" , dest : "/etc/profile.d/w.sh" }
2020-11-17 12:41:02 -05:00
- { src : "etc/profile.d/pvc.sh.j2" , dest : "/etc/profile.d/zzz_pvc.sh" }
2021-02-02 12:34:25 -05:00
tags : base-shell
2019-06-09 00:11:06 -04:00
- name : install update-motd crontab
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
mode : 0644
with_items :
- { src : "etc/cron.d/update-motd.j2" , dest : "/etc/cron.d/update-motd" }
2021-02-02 12:34:25 -05:00
tags : base-shell
2019-06-09 00:11:06 -04:00
- name : ensure /etc/motd is absent
file :
dest : "/etc/motd"
state : absent
2021-02-02 12:34:25 -05:00
tags : base-shell
2019-06-09 00:11:06 -04:00
# fail2ban
- name : install fail2ban configurations
template :
src : "{{ item.src }}"
dest : "{{ item.dest }}"
mode : 0644
notify : restart fail2ban
with_items :
- { src : "etc/fail2ban/action.d/route.conf.j2" , dest : "/etc/fail2ban/action.d/route.conf" }
- { src : "etc/fail2ban/filter.d/sshd.conf.j2" , dest : "/etc/fail2ban/filter.d/sshd.conf" }
- { src : "etc/fail2ban/jail.d/sshd.conf.j2" , dest : "/etc/fail2ban/jail.d/sshd.conf" }
- { src : "etc/fail2ban/jail.d/sshd.local.j2" , dest : "/etc/fail2ban/jail.d/sshd.local" }
2021-02-02 12:34:25 -05:00
tags : base-fail2ban
2019-06-09 00:11:06 -04:00
2020-10-27 15:34:21 -04:00
# check-mk-agent
- name : install check_mk agent plugins
copy :
src : "usr/lib/check_mk_agent/plugins/{{ item }}"
dest : "/usr/lib/check_mk_agent/plugins/{{ item }}"
2020-10-27 15:48:57 -04:00
mode : 0755
2020-10-27 15:34:21 -04:00
with_items :
- backup
- cephfsmounts
- dpkg
- entropy
- freshness
- kernelversion
- ownership
2021-02-02 12:34:25 -05:00
tags : base-cmkagent
2020-10-27 15:34:21 -04:00
2021-05-12 13:53:15 -04:00
# backups
- name : create backup directory
file :
dest : /srv/backups
state : directory
tags : base-backups
- name : install daily backup script
template :
src : etc/cron.daily/pvc-backup.j2
dest : /etc/cron.daily/pvc-backup
mode : 0755
tags : base-backups
- name : install IPMI network interfaces fragment
template :
src : etc/network/interfaces.d/ipmi.j2
dest : /etc/network/interfaces.d/ipmi
tags : base-ipmi
- name : configure IPMI username
command : "ipmitool user set name {{ ipmi_user_configuration[cluster_hardware][item]['id'] }} {{ ipmi_user_configuration[cluster_hardware][item]['username'] }}"
with_items :
- "admin"
- "pvc"
tags : base-ipmi
- name : configure IPMI password
command : "ipmitool user set password {{ ipmi_user_configuration[cluster_hardware][item]['id'] }} {{ ipmi_user_configuration[cluster_hardware][item]['password'] }}"
with_items :
- "admin"
- "pvc"
tags : base-ipmi
- name : configure IPMI role
command : "ipmitool user priv {{ ipmi_user_configuration[cluster_hardware][item]['id'] }} {{ ipmi_user_configuration[cluster_hardware][item]['role'] }} {{ ipmi_user_configuration[cluster_hardware]['channel'] }}"
with_items :
- "admin"
- "pvc"
tags : base-ipmi
- name : enable IPMI user
command : "ipmitool user enable {{ ipmi_user_configuration[cluster_hardware][item]['id'] }}"
with_items :
- "admin"
- "pvc"
tags : base-ipmi
2019-06-09 00:11:06 -04:00
#
# Configure users
#
# common
- name : ensure /var/home exists
file :
state : directory
dest : /var/home
2021-05-27 12:28:48 -04:00
tags :
- users
2019-06-09 00:11:06 -04:00
2021-04-08 13:46:30 -04:00
# root
- name : generate Root password hash
command : "mkpasswd --method=sha512crypt {{ root_password }}"
no_log : true
register : mkpasswd
2021-05-27 12:28:48 -04:00
tags :
- users
- user-root
2019-06-09 00:11:06 -04:00
- name : set Root password
user :
name : root
2021-04-08 13:46:30 -04:00
password : "{{ mkpasswd.stdout }}"
2021-05-27 12:28:48 -04:00
tags :
- users
- user-root
2019-06-09 00:11:06 -04:00
- name : remove Root known_hosts
file :
state : absent
dest : /root/.ssh/known_hosts
2021-05-27 12:28:48 -04:00
tags :
- users
- user-root
2019-06-09 00:11:06 -04:00
- name : write vimrc to root homedir
template :
src : var/home/user/vimrc.j2
dest : /root/.vimrc
mode : 0600
2021-05-27 12:28:48 -04:00
tags :
- users
- user-root
2019-06-09 00:11:06 -04:00
- name : create vimdir
file :
state : directory
dest : /root/.vim
mode : 0700
2021-05-27 12:28:48 -04:00
tags :
- users
- user-root
2019-06-09 00:11:06 -04:00
- name : write htoprc to homedir
template :
src : var/home/user/config/htop/htoprc.j2
dest : /root/.htoprc
mode : 0600
2021-05-27 12:28:48 -04:00
tags :
- users
- user-root
2019-06-09 00:11:06 -04:00
# backup
- name : ensure backup user has shell
user :
name : backup
shell : /bin/sh
2021-05-27 12:28:48 -04:00
tags :
- users
- user-backup
2019-06-09 00:11:06 -04:00
- name : create backup .ssh directory
file :
path : /var/backups/.ssh
state : directory
owner : backup
group : root
mode : 0700
2021-05-27 12:28:48 -04:00
tags :
- users
- user-backup
2019-06-09 00:11:06 -04:00
- name : create backup authorized_keys file
template :
src : var/backups/ssh/authorized_keys.j2
dest : /var/backups/.ssh/authorized_keys
owner : backup
group : root
mode : 0640
2021-05-27 12:28:48 -04:00
tags :
- users
- user-backup
2019-06-09 00:11:06 -04:00
- name : write the sudoers file
template :
src : etc/sudoers.d/sudoers-backup.j2
dest : /etc/sudoers.d/backup
2021-05-27 12:28:48 -04:00
tags :
- users
- user-backup
2019-06-09 00:11:06 -04:00
- name : install the post-backup timestamp script
template :
src : var/backups/timestamp.sh.j2
dest : /var/backups/timestamp.sh
mode : 0755
2021-05-27 12:28:48 -04:00
tags :
- users
- user-backup
2019-06-09 00:11:06 -04:00
- name : touch shares file
file :
dest : /var/backups/shares
state : touch
owner : backup
2021-05-27 12:28:48 -04:00
tags :
- users
- user-backup
2019-06-09 00:11:06 -04:00
# deploy
- name : ensure user deploy exists
user :
2021-04-13 11:30:42 -04:00
name : "{{ deploy_username }}"
2019-06-09 00:11:06 -04:00
uid : 200
group : operator
shell : /bin/bash
2021-04-13 11:30:42 -04:00
home : "/var/home/{{ deploy_username }}"
2019-06-09 00:11:06 -04:00
createhome : yes
move_home : yes
state : present
append : yes
2021-05-27 12:28:48 -04:00
tags :
- users
- user-deploy
2019-06-09 00:11:06 -04:00
- name : ensure homedir has right permissions
file :
2021-04-13 11:30:42 -04:00
dest : "/var/home/{{ deploy_username }}"
2019-06-09 00:11:06 -04:00
state : directory
2021-04-13 11:30:42 -04:00
owner : "{{ deploy_username }}"
2019-06-09 00:11:06 -04:00
group : operator
mode : 0700
2021-05-27 12:28:48 -04:00
tags :
- users
- user-deploy
2019-06-09 00:11:06 -04:00
- name : ensure .ssh directory exists
file :
2021-04-13 11:30:42 -04:00
dest : "/var/home/{{ deploy_username }}/.ssh"
2019-06-09 00:11:06 -04:00
state : directory
2021-04-13 11:30:42 -04:00
owner : "{{ deploy_username }}"
2019-06-09 00:11:06 -04:00
group : operator
mode : 0700
2021-05-27 12:28:48 -04:00
tags :
- users
- user-deploy
2019-06-09 00:11:06 -04:00
- name : add authorized keys
authorized_key :
2021-04-13 11:30:42 -04:00
user : "{{ deploy_username }}"
2019-06-10 15:07:18 -04:00
key : "{{ item.1 }}"
with_subelements :
- "{{ admin_users }}"
- keys
2021-05-27 12:28:48 -04:00
tags :
- users
- user-deploy
2019-06-09 00:11:06 -04:00
# admin_users
- name : ensure user exists
user :
name : "{{ item.name }}"
uid : "{{ item.uid }}"
group : operator
2021-04-08 13:46:30 -04:00
groups : sudo,adm,wireshark
2019-06-09 00:11:06 -04:00
shell : /bin/bash
home : "/var/home/{{ item.name }}"
createhome : yes
state : present
append : yes
with_items : "{{ admin_users }}"
2021-05-27 12:28:48 -04:00
tags :
- users
- user-admin
2019-06-09 00:11:06 -04:00
- name : ensure homedir has right permissions
file :
dest : "/var/home/{{ item.name }}"
state : directory
owner : "{{ item.name }}"
group : operator
mode : 0700
with_items : "{{ admin_users }}"
2021-05-27 12:28:48 -04:00
tags :
- users
- user-admin
2019-06-09 00:11:06 -04:00
- name : ensure .ssh directory exists
file :
dest : "/var/home/{{ item.name }}/.ssh"
state : directory
owner : "{{ item.name }}"
group : operator
mode : 0700
with_items : "{{ admin_users }}"
2021-05-27 12:28:48 -04:00
tags :
- users
- user-admin
2019-06-09 00:11:06 -04:00
- name : add authorized keys
authorized_key :
2019-06-10 15:07:18 -04:00
user : "{{ item.0.name }}"
key : "{{ item.1 }}"
with_subelements :
- "{{ admin_users }}"
- keys
2021-05-27 12:28:48 -04:00
tags :
- users
- user-admin
2019-06-09 00:11:06 -04:00
- name : write bashrc to homedir
template :
src : var/home/user/bashrc.j2
dest : "/var/home/{{ item.name }}/.bashrc"
owner : "{{ item.name }}"
group : operator
mode : 0700
with_items : "{{ admin_users }}"
2021-05-27 12:28:48 -04:00
tags :
- users
- user-admin
2019-06-09 00:11:06 -04:00
- name : write bash_logout to homedir
template :
src : var/home/user/bash_logout.j2
dest : "/var/home/{{ item.name }}/.bash_logout"
owner : "{{ item.name }}"
group : operator
mode : 0700
with_items : "{{ admin_users }}"
2021-05-27 12:28:48 -04:00
tags :
- users
- user-admin
2019-06-09 00:11:06 -04:00
- name : ensure htop config directory exists
file :
dest : "/var/home/{{ item.name }}/.config/htop"
state : directory
owner : "{{ item.name }}"
group : operator
mode : 0755
with_items : "{{ admin_users }}"
2021-05-27 12:28:48 -04:00
tags :
- users
- user-admin
2019-06-09 00:11:06 -04:00
- name : write htoprc to homedir
template :
src : var/home/user/config/htop/htoprc.j2
dest : "/var/home/{{ item.name }}/.config/htop/htoprc"
owner : "{{ item.name }}"
group : operator
mode : 0644
with_items : "{{ admin_users }}"
2021-05-27 12:28:48 -04:00
tags :
- users
- user-admin
2019-06-09 00:11:06 -04:00
- name : write profile to homedir
template :
src : var/home/user/profile.j2
dest : "/var/home/{{ item.name }}/.profile"
owner : "{{ item.name }}"
group : operator
mode : 0700
with_items : "{{ admin_users }}"
2021-05-27 12:28:48 -04:00
tags :
- users
- user-admin
2019-06-09 00:11:06 -04:00
- name : write vimrc to homedir
template :
src : var/home/user/vimrc.j2
dest : "/var/home/{{ item.name }}/.vimrc"
owner : "{{ item.name }}"
group : operator
mode : 0600
with_items : "{{ admin_users }}"
2021-05-27 12:28:48 -04:00
tags :
- users
- user-admin
2019-06-09 00:11:06 -04:00
- name : create vimdir
file :
state : directory
2021-03-18 09:36:49 -04:00
dest : /var/home/{{ item.name }}/.vim
2019-06-09 00:11:06 -04:00
owner : "{{ item.name }}"
group : operator
mode : 0700
with_items : "{{ admin_users }}"
2021-05-27 12:28:48 -04:00
tags :
- users
- user-admin
2019-06-09 00:11:06 -04:00
#
# Verify and enable services
#
- name : verify and enable services
service :
name : "{{ item }}"
state : started
enabled : yes
with_items :
- acpid
- rsyslog
- postfix
- ntp
- ssh
2021-02-02 12:34:25 -05:00
tags : base-services
2019-06-16 03:00:11 -04:00
- meta : flush_handlers