1
0

Add reponse for ansible

Signed-off-by: Arnaud M <arnaud.choupinette@mailops.fr>
This commit is contained in:
Arnaud M
2023-03-04 20:49:29 +01:00
parent 01eb15f6d5
commit 47d1e2b488
11 changed files with 33 additions and 7 deletions

View File

@@ -0,0 +1,7 @@
#!/bin/bash
find . -name '*.gpg' | while read f ; do
echo "Unciphering $f"
n=${f%.gpg}
cat $f | gpg -d > $n
done