Add iftop and an alias to call it as a user.

This commit is contained in:
2025-07-13 09:30:26 -07:00
parent b6066558e7
commit 2d9317e9de
3 changed files with 5 additions and 0 deletions

View File

@ -6,6 +6,7 @@
set_fact: set_fact:
sshfs: sshfs sshfs: sshfs
tar: tar tar: tar
iftop: iftop
- name: General | Facts | Packages | Parrot OS Fixes - name: General | Facts | Packages | Parrot OS Fixes
set_fact: set_fact:

View File

@ -722,6 +722,8 @@
alias_permission_commands: | alias_permission_commands: |
alias chown='chown -c' alias chown='chown -c'
alias chmod='chmod -c' alias chmod='chmod -c'
alias_iftop: |
alias iftop='sudo iftop'
- name: General | Account Management | Users | Files | Common Variable - name: General | Account Management | Users | Files | Common Variable
set_fact: set_fact:
@ -785,6 +787,7 @@
{{ function_update_sdks }} {{ function_update_sdks }}
{{ function_ansible_vars }} {{ function_ansible_vars }}
{{ alias_permission_commands }} {{ alias_permission_commands }}
{{ alias_iftop }}
- name: General | Account Management | Users | Files | .bashrc - name: General | Account Management | Users | Files | .bashrc
blockinfile: blockinfile:

View File

@ -56,6 +56,7 @@
- "{{ cron }}" - "{{ cron }}"
- "{{ encfs }}" - "{{ encfs }}"
- rsync - rsync
- "{{ iftop }}"
state: present state: present
- name: General | Software | Packages | Install Software (DEV) - name: General | Software | Packages | Install Software (DEV)