Debugging the tests. Do not remove snapd from Ubuntu for now. Add some comments.

This commit is contained in:
Hyperling 2021-02-01 05:15:45 -06:00
parent 49035d6712
commit 922d0cfe82
3 changed files with 16 additions and 1 deletions

View File

@ -1,4 +1,5 @@
--- ---
# Provide FreeBSD with a DE.
- name: Install FreeBSD UI Software - name: Install FreeBSD UI Software
package: package:

View File

@ -1,5 +1,5 @@
--- ---
# Extra SSH keys # SSH keys for day-to-day system usage.
- name: Create Root's SSH Key - name: Create Root's SSH Key
openssh_keypair: openssh_keypair:
@ -7,9 +7,15 @@
- name: TEST DELETEME 1 - name: TEST DELETEME 1
shell: echo `whoami` shell: echo `whoami`
register: test1
- debug: test1
- name: TEST DELETEME 2 - name: TEST DELETEME 2
shell: echo `pwd` shell: echo `pwd`
register: test2
- debug: test2
- name: Join System to 1337 Share - name: Join System to 1337 Share
shell: echo "ssh-copy-id -f ling@leet" shell: echo "ssh-copy-id -f ling@leet"

View File

@ -1,4 +1,5 @@
--- ---
# Cross-platform package management.
- name: Install Repo Software - name: Install Repo Software
package: package:
@ -14,5 +15,12 @@
package: package:
name: name:
- cowsay # Sorry ;) - cowsay # Sorry ;)
state: absent
# TODO: Confirm if Ubuntu still uses snap for critical UI components like GNOME.
- name: Remove Repo Software
package:
name:
- snapd - snapd
state: absent state: absent
when: ansible_distribution != "Ubuntu"