Conversation
| pip: | ||
| pkg.installed: | ||
| - pkgs: | ||
| - python3-pip |
There was a problem hiding this comment.
Installing pip as part of the core install. It is already on all but two servers, moving to salt-extensions will install it everywhere regardless.
| - build-essential | ||
| - python3-dev | ||
| - install_recommends: False |
There was a problem hiding this comment.
Need to review what is required.
Build-essential is needed for the Salt extensions to compile but may not be needed everywhere, it is a bulky package and I only want to install it if I need it.
L28 - install_recommends install build-essential and python3-dev so should be removed from here if we are installing them anyway.
|
Todo before review + deployment:
|
| cmd.run: | ||
| - name: | | ||
| fallocate -l {{ swap_size }}M {{ swap_path }} | ||
| fallocate -l {{ swap_diff }}M {{ swap_path }} |
There was a problem hiding this comment.
Allocating the difference between our desired swap size and the existing swap (such as separate swap partitions).
This is to prevent duplicate swap being set up.
Resolves #491