mirror of
https://github.com/GrapheneOS/infrastructure.git
synced 2024-10-01 00:55:42 -04:00
17 lines
196 B
Plaintext
17 lines
196 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -o errexit
|
||
|
|
||
|
user=root
|
||
|
|
||
|
. hosts.sh
|
||
|
|
||
|
rm -rf packages
|
||
|
mkdir -p packages
|
||
|
|
||
|
for host in ${hosts_all[@]}; do
|
||
|
echo $host
|
||
|
ssh root@$host pacman -Qqe > packages/$host
|
||
|
echo
|
||
|
done
|