Compare commits

..

No commits in common. "2bfa4d5101d2903e35349c24440b519aa69655f3" and "3c28a545d767f2b34ff065427f1a8e2e1277ce8b" have entirely different histories.

2 changed files with 2 additions and 2 deletions

View File

@ -199,7 +199,7 @@ def main():
# login = input("type your smtp login: ") # login = input("type your smtp login: ")
# password = getpass.getpass(prompt="type your password and press enter:") # password = getpass.getpass(prompt="type your password and press enter:")
# context = ssl.create_default_context(cafile="/usr/local/share/ca-certificates/own.crt") # context = ssl.create_default_context(cafile="/usr/local/share/ca-certificates/own.crt")
# with smtplib.SMTP_SSL(server, 465, context=context) as smtp: # with smtplib.smtp_ssl(server, 465, context=context) as smtp:
# smtp.login(login, password) # smtp.login(login, password)
agir_key = getpass.getpass(prompt=f"Type {AGIR_URL} API key:") agir_key = getpass.getpass(prompt=f"Type {AGIR_URL} API key:")

View File

@ -28,7 +28,7 @@ function download() {
gpg --keyserver keys.openpgp.org --recv 7C9E68152594688862D62AF62D9AE806EC1592E2 gpg --keyserver keys.openpgp.org --recv 7C9E68152594688862D62AF62D9AE806EC1592E2
gpg --verify $BINDIR/gitea-$VERSION-linux-amd64.asc $BINDIR/gitea-$VERSION-linux-amd64 gpg --verify $BINDIR/gitea-$VERSION-linux-amd64.asc $BINDIR/gitea-$VERSION-linux-amd64
chmod u+x $BINDIR/gitea-$VERSION-linux-amd64 chmod u+x $BINDIR/gitea-$VERSION-linux-amd64
chown gitea:gitea $BINDIR/gitea-$VERSION-linux-amd64 chown gitea.gitea $BINDIR/gitea-$VERSION-linux-amd64
set +x set +x
} }