mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2024-12-22 21:49:22 -05:00
17 lines
194 B
Plaintext
17 lines
194 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -o errexit
|
||
|
|
||
|
user=root
|
||
|
|
||
|
. hosts.sh
|
||
|
|
||
|
rm -rf modules
|
||
|
mkdir -p modules
|
||
|
|
||
|
for host in ${hosts_all[@]}; do
|
||
|
echo $host
|
||
|
ssh root@$host lsmod | sort > modules/$host
|
||
|
echo
|
||
|
done
|