mirror of
https://github.com/ryantm/agenix.git
synced 2024-11-01 00:29:56 +03:00
parent
8af97149b2
commit
be7bad2c12
1 changed files with 6 additions and 4 deletions
|
@ -105,10 +105,12 @@ function edit {
|
||||||
if [ -f "$FILE" ]
|
if [ -f "$FILE" ]
|
||||||
then
|
then
|
||||||
DECRYPT=("''${DEFAULT_DECRYPT[@]}")
|
DECRYPT=("''${DEFAULT_DECRYPT[@]}")
|
||||||
while IFS= read -r key
|
if [ -f "$HOME/.ssh/id_rsa" ]; then
|
||||||
do
|
DECRYPT+=(--identity "$HOME/.ssh/id_rsa")
|
||||||
DECRYPT+=(--identity "$key")
|
fi
|
||||||
done <<<"$((find ~/.ssh -maxdepth 1 -type f -not -name "*pub" -not -name "config" -not -name "authorized_keys" -not -name "known_hosts") || exit 1)"
|
if [ -f "$HOME/.ssh/id_ed25519" ]; then
|
||||||
|
DECRYPT+=(--identity "$HOME/.ssh/id_ed25519")
|
||||||
|
fi
|
||||||
DECRYPT+=(-o "$CLEARTEXT_FILE" "$FILE")
|
DECRYPT+=(-o "$CLEARTEXT_FILE" "$FILE")
|
||||||
${ageBin} "''${DECRYPT[@]}" || exit 1
|
${ageBin} "''${DECRYPT[@]}" || exit 1
|
||||||
cp "$CLEARTEXT_FILE" "$CLEARTEXT_FILE.before"
|
cp "$CLEARTEXT_FILE" "$CLEARTEXT_FILE.before"
|
||||||
|
|
Loading…
Reference in a new issue