chatdesk-ui/postgres_15.8.1.044/ansible/tasks/internal/optimizations.yml

40 lines
785 B
YAML

- name: ensure services are stopped and disabled for first boot debian build
systemd:
enabled: no
name: '{{ item }}'
state: stopped
with_items:
- postgresql
- pgbouncer
- fail2ban
- motd-news
- vector
- lvm2-monitor
- salt-minion
when: debpkg_mode
- name: ensure services are stopped and disabled for first boot nix build
systemd:
enabled: no
name: '{{ item }}'
state: stopped
with_items:
- postgresql
- pgbouncer
- fail2ban
- motd-news
- vector
- salt-minion
when: stage2_nix
- name: disable man-db
become: yes
file:
state: absent
path: "/etc/cron.daily/{{ item }}"
with_items:
- man-db
- popularity-contest
- ubuntu-advantage-tools
when: debpkg_mode or stage2_nix