10 lines
317 B
Bash
10 lines
317 B
Bash
#!/usr/bin/env bash
|
|
|
|
# collect all network configurations and save them in the store
|
|
|
|
sudo ls /etc/NetworkManager/system-connections \
|
|
| while read file
|
|
do
|
|
sudo cat "/etc/NetworkManager/system-connections/$file" \
|
|
| pass insert -m "krops/desktop_secrets/network-manager/system-connections/$file"
|
|
done
|