everything
continuous-integration/drone/push Build is passing Details

This commit is contained in:
quackerd 2021-04-23 03:06:43 -04:00
parent 97fa084282
commit 3ec01f2fa8
2 changed files with 2 additions and 2 deletions

View File

@ -23,7 +23,7 @@ for filename in confs/*; do
-v d2ray_volume:/opt/config \
--name d2ray \
quackerd/d2ray:latest"
ssh -p 77 -o StrictHostKeychecking=no -i ansible/id_root root@$addr -t "docker system prune -af"
ssh -p 77 -o StrictHostKeychecking=no -i ./id_root root@$addr -t "docker system prune -af"
done
wait

View File

@ -4,7 +4,7 @@ decrypt()
{
input=$1
key=$2
crypt_ret=$(echo $input | openssl enc -d -salt -aes-256-cbc -a -A -md sha512 -pbkdf2 -pass pass:$key)
crypt_ret=$(echo $input | openssl enc -d -salt -aes-256-cbc -a -md sha512 -pbkdf2 -pass pass:$key)
}
encrypt()