forked from fazlearefin/ubuntu-dev-machine-setup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
post_install.yml
20 lines (17 loc) · 855 Bytes
/
post_install.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- hosts: localhost
tasks:
- name: remove redundant packages
ansible.builtin.apt:
autoremove: yes
force_apt_get: yes
- name: display post install message
debug:
msg:
- 'Manual steps left to do:'
- '- git clone the dotfiles repo (optional)'
- '- add noatime option for your SSD mounts points in /etc/fstab (optional)'
- '- enable WebRender in firefox; about:config in address bar, then manually set the gfx.webrender.enabled or gfx.webrender.all pref to true (optional)'
- '- cache in RAM only in firefox: about:config, browser.cache.disk.enable -> false, browser.cache.memory.enable -> true, browser.cache.memory.capacity -> 1048576, browser.cache.memory.max_entry_size -> 51200, check about:cache (optional)'
- '- Reboot your system'
...