Skip to content

Instantly share code, notes, and snippets.

View AleksdemSA's full-sized avatar

Aleksey Ubozhenko R3DHX AleksdemSA

View GitHub Profile
/*
export MONGO_URI="mongodb://admin:passwd@localhost:27017"
export USER_YAML="filename"
createMongoUsers
yaml-file like this
users:
- username: exampleUser
password: examplePassword
@AleksdemSA
AleksdemSA / gitea_update.sh
Last active April 14, 2023 06:35
update gitea
#!/bin/bash
GITEA_FOLDER='/opt/gitea'
RELEASE=`curl --silent "https://api.github.com/repos/go-gitea/gitea/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/' | sed -E 's/v//g'`
printf "\033[92m"
printf "\nRelease Number: $RELEASE \n"
printf "\033[91m"
printf "\nsystemctl stop gitea.service\n"