graphene-os-server-infrastr.../fetch-info

21 lines
415 B
Plaintext
Raw Normal View History

2023-07-11 03:35:56 +00:00
#!/bin/bash
set -o errexit
user=root
. hosts.sh
rm -rf modules packages units
mkdir -p modules packages units
for host in ${hosts_all[@]}; do
(
2024-01-03 15:18:15 +00:00
ssh root@$host lsmod | awk '{ print $1 }' | sort > modules/$host
2023-07-11 03:35:56 +00:00
ssh root@$host pacman -Qqe > packages/$host
ssh root@$host systemctl list-unit-files --state=enabled --state=disabled --state=masked | sort > units/$host
) &
done
wait