X-Git-Url: https://plomlompom.com/repos/%7B%7B%20web_path%20%7D%7D/decks/%7B%7Bdeck_id%7D%7D/cards/%7B%7Bcard_id%7D%7D/static/git-logo.png?a=blobdiff_plain;f=ansible%2Fconfig_new.yml;h=05e77b3c14d630af185fa99302caddcc7c480d8a;hb=c483f0e1c35f408e70f31f8855fcd80abdbd963c;hp=2f86ac3a550c68b7eeba92d98c30adfd83942fcd;hpb=a8b7d1a46c9234473931171b20e3ac805f43d2c1;p=config diff --git a/ansible/config_new.yml b/ansible/config_new.yml index 2f86ac3..05e77b3 100644 --- a/ansible/config_new.yml +++ b/ansible/config_new.yml @@ -71,7 +71,7 @@ # Ensure X window environment. - name: ensure minimal X window environment apt: name={{item}} state=present - with_lines: cat ~/config/ansible/files/apt-mark_new/{{ system_name }}/minimal_x | sed -e 's/ *#.*$//' + with_lines: cat ~/config/ansible/files/apt-mark_new/minimal/minimal_x | sed -e 's/ *#.*$//' #- name: ensure 3d acceleration and optimus switch # apt: name={{item}} state=present # with_lines: cat ~/config/ansible/files/apt-mark/3d_acceleration | sed -e 's/ *#.*$//' @@ -87,9 +87,9 @@ with_lines: cat ~/config/ansible/files/apt-mark_new/minimal/browser_environment | sed -e 's/ *#.*$//' # Ensure wifi. - #- name: ensure wifi configuration - # apt: name={{item}} state=present - # with_lines: cat ~/config/ansible/files/apt-mark/wifi | sed -e 's/ *#.*$//' + - name: ensure wifi configuration + apt: name={{item}} state=present + with_lines: cat ~/config/ansible/files/apt-mark_new/minimal/wifi | sed -e 's/ *#.*$//' # Ensure audio/video consumption necessities. #- name: ensure multimedia tools @@ -105,7 +105,7 @@ # Remove undesired packages - name: collect desired packages - shell: cat files/apt-mark/minimal/* files/apt-mark_new/{{ system_name }}/* | sed -e 's/ *#.*$//' > /tmp/white_list_unsorted && sort /tmp/white_list_unsorted > /tmp/white_list_sorted + shell: cat files/apt-mark_new/minimal/* files/apt-mark_new/{{ system_name }}/* | sed -e 's/ *#.*$//' > /tmp/white_list_unsorted && sort /tmp/white_list_unsorted > /tmp/white_list_sorted - name: collect currently installed packages shell: dpkg-query -Wf '${Package}\n' > /tmp/all_unsorted && sort /tmp/all_unsorted > /tmp/all_sorted - name: create black list of packages to mark as automatically installed from the difference between the required packages and the packages currently installed