filter irrelevant module output

This commit is contained in:
Daniel Micay 2024-01-03 10:18:15 -05:00
parent e581aeafb5
commit d0e6159220
1 changed files with 1 additions and 1 deletions

View File

@ -11,7 +11,7 @@ mkdir -p modules packages units
for host in ${hosts_all[@]}; do
(
ssh root@$host lsmod | sort > modules/$host
ssh root@$host lsmod | awk '{ print $1 }' | sort > modules/$host
ssh root@$host pacman -Qqe > packages/$host
ssh root@$host systemctl list-unit-files --state=enabled --state=disabled --state=masked | sort > units/$host
) &