]> freie-schul-it.de Git - fsit-cmgt.git/blob - library/bootstrap.yml
test
[fsit-cmgt.git] / library / bootstrap.yml
1 ---
2 - name: change ansible-user password
3 user:
4 name: ansible
5 update_password: always
6 password: "{{ ansibleuser|password_hash('sha512') }}"
7 - name: hide system-account
8 copy:
9 src: fsit-cmgt/files/gdm-ansible
10 dest: /var/lib/AccountsService/users/ansible
11 #- name: stop automatic remote printer installation
12 #ansible.builtin.systemd:
13 #name: cups-browsed
14 #state: stopped
15 #- name: disable automatic remote printer installation
16 #ansible.builtin.systemd:
17 #name: cups-browsed
18 #enabled: no
19 - name: remove apt-config-file derived from preseeding
20 ansible.builtin.file:
21 path: /etc/apt/apt.conf
22 state: absent
23 - name: copy new apt-proxy config file to apt.conf.d-dir
24 ansible.builtin.template:
25 src: files/apt-proxy_01proxy.j2
26 dest: /etc/apt/apt.conf.d/01proxy
27 - name: Update and upgrade apt packages
28 apt:
29 update_cache: yes
30 upgrade: yes
31 - name: install core-packages
32 apt:
33 pkg:
34 - htop
35 - glances
36 - inxi
37 - bmon
38 ...