diff --git a/tasks/general/tests/nmap.yml b/tasks/general/tests/nmap.yml index fac56c1..4f269f9 100644 --- a/tasks/general/tests/nmap.yml +++ b/tasks/general/tests/nmap.yml @@ -2,10 +2,10 @@ # Nmap port test - name: General | Tests | nmap | Run Count - shell: "nmap --open localhost | grep -c open > {{ nmap_report }}" + shell: "nmap --open localhost | grep -c open > {{ nmap_report }}; echo success" - name: General | Tests | nmap | Run Open - shell: "nmap --open localhost | grep open >> {{ nmap_report }}" + shell: "nmap --open localhost | grep open >> {{ nmap_report }}; echo success" - name: General | Tests | nmap | Make Viewable file: diff --git a/tasks/linux/software/flatpaks.yml b/tasks/linux/software/flatpaks.yml index 4dc50e8..fad1d14 100644 --- a/tasks/linux/software/flatpaks.yml +++ b/tasks/linux/software/flatpaks.yml @@ -52,12 +52,22 @@ remote: flathub state: present +- name: Workstation | Linux | Flatpak | Install Android Studio + flatpak: + name: com.google.AndroidStudio + remote: flathub + state: present + # Repo Software +- name: Workstation | Linux | Flatpak | Install Lutris from Package Manager + package: + name: lutris + state: present + - name: Workstation | Linux | Flatpak | Install Firefox ESR from Package Manager package: - name: - - "{{ firefox_esr }}" + name: "{{ firefox_esr }}" state: present - name: Workstation | Linux | Flatpak | Remove Firefox Normal for ESR