Add solution to install demo-flask
Signed-off-by: Arnaud M. <arnaud.choupinette@mailops.fr>
This commit is contained in:
parent
3dbfd03caa
commit
0a91c7b40a
|
|
@ -0,0 +1 @@
|
|||
user-data-install-demo-flask.sh
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
#!/bin/bash
|
||||
|
||||
f=user-data-install-demo-flask.sh
|
||||
echo "Ciphering $f"
|
||||
cat $f | gpg -e -r arnaud@mailops.fr -r arnaud.choupinette@mailops.fr -r arnaud.morin@gmail.com > $f.gpg
|
||||
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/bash
|
||||
|
||||
f=user-data-install-demo-flask.sh.gpg
|
||||
echo "Unciphering $f"
|
||||
n=${f%.gpg}
|
||||
cat $f | gpg -d > $n
|
||||
Binary file not shown.
Loading…
Reference in New Issue