fix gotify

new version for adguardhome authelia bitwarden-desktop element-web gitea gotify joplin mautrix-whatsapp metabase zigbee2mqtt rustdesk-server
This commit is contained in:
thomas 2022-08-05 04:46:20 +02:00
parent 5012543e4c
commit cc93246273
13 changed files with 34 additions and 31 deletions

View file

@ -3,31 +3,32 @@
[ -e ./lib/function.sh ] && source ./lib/function.sh
APP=gotify
VERSION=2.1.4
VERSION=2.1.5
GIT_VERSION=v$VERSION
DEB_VERSION=$VERSION-2
DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M)
DEBIAN_VERSION_CODENAME=bullseye
IMAGE_SIZE=4
IMAGE_SIZE=6
STEP="envinit prebuild build makedeb"
envinit() {
apt install -y --no-install-recommends build-essential git wget ca-certificates dpkg fakeroot
apt-get update
apt install -y --no-install-recommends build-essential git wget ca-certificates dpkg fakeroot gnupg2
wget -qO - https://deb.nodesource.com/setup_16.x | bash
wget -qO - https://dl.yarnpkg.com/debian/pubkey.gpg | gpg --dearmor > /usr/share/keyrings/yarnkey.gpg
echo "deb [signed-by=/usr/share/keyrings/yarnkey.gpg] https://dl.yarnpkg.com/debian stable main" > /etc/apt/sources.list.d/yarn.list
apt-get update
apt-get install -y nodejs yarn
wget -qO - https://go.dev/dl/go1.17.7.linux-amd64.tar.gz | tar -C /usr/local -xz
wget -qO - https://go.dev/dl/go1.18.1.linux-amd64.tar.gz | tar -C /usr/local -xz
}
prebuild(){
GIT_VERSION=$1
git clone --depth 1 -b ${GIT_VERSION} https://github.com/gotify/server.git /tmp/server
[ -e /tmp/${APP} ] && rm -fr /tmp/${APP}
git clone --depth 1 -b ${GIT_VERSION} https://github.com/gotify/server.git /tmp/${APP}
}
build() {
cd /tmp/server/
cd /tmp/${APP}
PATH=${PATH}:/usr/local/go/bin
export GO111MODULE=on
make download-tools
@ -38,12 +39,10 @@ build() {
}
makedeb(){
GIT_VERSION=$1
DEB_VERSION=$2
PATH_DEB=/tmp/src/rootfs
cp /tmp/server/gotify-server ${PATH_DEB}/usr/bin/
cp /tmp/server/config.example.yml ${PATH_DEB}/etc/gotify/config.yml
cp /tmp/${APP}/gotify-server ${PATH_DEB}/usr/bin/
cp /tmp/${APP}/config.example.yml ${PATH_DEB}/etc/gotify/config.yml
sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control
fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist
}

View file

@ -2,4 +2,4 @@
id gotify &> /dev/null || useradd gotify -r -s /bin/false -md /var/lib/gotify
chown -R www-data:www-data /var/lib/grocy/data/
chown -R www-data:www-data /var/lib/gotify/data/