diff --git a/ressources/adguardhome/debmaker b/ressources/adguardhome/debmaker index 95c9c2d..ca7ba87 100755 --- a/ressources/adguardhome/debmaker +++ b/ressources/adguardhome/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=0.108.0-b.48 +VERSION=0.108.0-b.49 APP=adguardhome DEPOT=https://github.com/AdguardTeam/AdGuardHome.git GIT_VERSION=v${VERSION} diff --git a/ressources/baikal/debmaker b/ressources/baikal/debmaker index 417cd7a..b870a9d 100755 --- a/ressources/baikal/debmaker +++ b/ressources/baikal/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=0.9.3 +VERSION=0.9.4 APP=baikal DEPOT=https://github.com/sabre-io/Baikal.git GIT_VERSION=${VERSION} diff --git a/ressources/cloudbeaver/debmaker b/ressources/cloudbeaver/debmaker index 0de2f8e..b6763f6 100755 --- a/ressources/cloudbeaver/debmaker +++ b/ressources/cloudbeaver/debmaker @@ -19,7 +19,7 @@ main(){ envinit() { configure_depot_yarn - configure_depot_nodejs 14 + configure_depot_nodejs 16 install_package_dependency npm install -g lerna } diff --git a/ressources/element-web/debmaker b/ressources/element-web/debmaker index 1684e6c..af332be 100755 --- a/ressources/element-web/debmaker +++ b/ressources/element-web/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=1.11.38 +VERSION=1.11.49 APP=element-web DEPOT=https://github.com/vector-im/element-web.git GIT_VERSION=v${VERSION} diff --git a/ressources/grocy/debmaker b/ressources/grocy/debmaker index c81421b..23e3456 100755 --- a/ressources/grocy/debmaker +++ b/ressources/grocy/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=3.3.2 +VERSION=4.0.3 APP=grocy DEPOT=https://github.com/grocy/grocy.git GIT_VERSION=v$VERSION diff --git a/ressources/guacamole-server/DEBIAN/changelog b/ressources/guacamole-server/DEBIAN/changelog new file mode 100644 index 0000000..e69de29 diff --git a/ressources/guacamole-server/DEBIAN/control b/ressources/guacamole-server/DEBIAN/control new file mode 100644 index 0000000..270346e --- /dev/null +++ b/ressources/guacamole-server/DEBIAN/control @@ -0,0 +1,8 @@ +Package: guacamole-server +Version: %VERSION% +Section: contrib +Priority: optional +Architecture: all +Depends: libwebp6, libcairo2 +Maintainer: Thomas Legay +Description: guacamole-server diff --git a/ressources/guacamole-server/DEBIAN/postinst b/ressources/guacamole-server/DEBIAN/postinst new file mode 100755 index 0000000..36a1bad --- /dev/null +++ b/ressources/guacamole-server/DEBIAN/postinst @@ -0,0 +1,37 @@ +#!/bin/sh +# +# Simple postinst script for guacd which creates a "guacd" user and group +# and sets the permissions and ownership of /var/run/guacd (the location +# of the guacd.pid file). +# + + +# Exit on errors +set -e + +GUACD_USER="guacd" # guacd username +GUACD_GROUP="guacd" # guacd group +GUACD_HOME="/var/run/guacd" # guacd home directory + +# Convenience function for error conditions. +fail() { + echo "$1" >&2 + exit 1 +} + +# Create guacd group if it does not exist +groupadd -fr "$GUACD_GROUP" ||\ + fail "Could not create group \"$GUACD_GROUP\"" + +# Create guacd user if it does not exist +useradd -g "$GUACD_GROUP" -d "$GUACD_HOME" -s /bin/false -r "$GUACD_USER" || ( + if [ "$?" != "9" ] + then + fail "Could not create user \"$GUACD_USER\"" + fi +) + +#DEBHELPER# + +# Exit successfully +exit 0 diff --git a/ressources/guacamole-server/README.MD b/ressources/guacamole-server/README.MD new file mode 100644 index 0000000..8a75bd4 --- /dev/null +++ b/ressources/guacamole-server/README.MD @@ -0,0 +1,20 @@ +#### mautrix-whatsapp + +##### Information +Site : https://docs.mau.fi/bridges/go/whatsapp/index.html + +Source : https://github.com/mautrix/whatsapp + +##### Install + +``` +apt install -y wget ca-certificates +wget -qO - https://deb.lgy.fr/install.sh | bash +apt-get update +apt-get install -y mautrix-whatsapp + +#see https://docs.mau.fi/bridges/go/whatsapp/setup/index.html#configuring-and-running + +systemctl enable --now mautrix-whatsapp +``` + diff --git a/ressources/guacamole-server/debmaker b/ressources/guacamole-server/debmaker new file mode 100755 index 0000000..66e7c20 --- /dev/null +++ b/ressources/guacamole-server/debmaker @@ -0,0 +1,39 @@ +#!/bin/bash + +VERSION=1.5.3 +APP=guacamole-server +DEPOT=https://github.com/apache/guacamole-server.git +GIT_VERSION=${VERSION} +DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M) +DEBIAN_VERSION_CODENAME=bullseye +IMAGE_SIZE=4 +PACKAGE_DEPENDENCY="build-essential automake autoconf libjpeg62-turbo-dev libcairo2-dev libpng-dev libtool-bin uuid-dev libossp-uuid-dev libavcodec-dev libavformat-dev libavutil-dev libswscale-dev freerdp2-dev libpango1.0-dev libssh2-1-dev libtelnet-dev libvncserver-dev libwebsockets-dev libpulse-dev libssl-dev libvorbis-dev libwebp-dev" + +main(){ + base_package_upgrade + install_package_dependency + get_git_source + build + makedeb +} + +build(){ + mkdir /tmp/src/rootfs + cd /tmp/${APP} + libtoolize --force + aclocal + autoheader + automake --force-missing --add-missing + autoconf + ./configure --prefix=/ + make DESTDIR=/tmp/src/rootfs install + +} + +makedeb(){ + PATH_DEB=/tmp/src/rootfs + cp -fr /tmp/src/DEBIAN ${PATH_DEB} + + sed -i "s/%VERSION%/$DEB_VERSION/" /tmp/src/rootfs/DEBIAN/control + fakeroot dpkg-deb -Z gzip --build /tmp/src/rootfs/ /tmp/dist +} diff --git a/ressources/guacamole-server/guacd.default b/ressources/guacamole-server/guacd.default new file mode 100644 index 0000000..ab152e9 --- /dev/null +++ b/ressources/guacamole-server/guacd.default @@ -0,0 +1,11 @@ +# Environment for guacd + +# Address and port to listen on for network connections + +LISTEN_ADDRESS=127.0.0.1 + +LISTEN_PORT=4822 + +# Other arguments to guacd + +DAEMON_ARGS= diff --git a/ressources/guacamole-server/guacd.service b/ressources/guacamole-server/guacd.service new file mode 100644 index 0000000..28a05d5 --- /dev/null +++ b/ressources/guacamole-server/guacd.service @@ -0,0 +1,16 @@ +[Unit] +Description=Guacamole proxy daemon +Documentation=man:guacd(8) +After=network.target + +[Service] +Type=forking +User=guacd +Group=guacd +RuntimeDirectory=guacd +PIDFile=/var/run/guacd/guacd.pid +EnvironmentFile=-/etc/default/guacd +ExecStart=/usr/sbin/guacd $DAEMON_ARGS -b $LISTEN_ADDRESS -l $LISTEN_PORT -p /var/run/guacd/guacd.pid + +[Install] +WantedBy=multi-user.target diff --git a/ressources/homeassistant/README.MD b/ressources/homeassistant/README.MD new file mode 100644 index 0000000..516530e --- /dev/null +++ b/ressources/homeassistant/README.MD @@ -0,0 +1,19 @@ +#### homeassistant + +##### Information +Site : https://www.home-assistant.io + +Source : https://github.com/home-assistant + +##### Install + +```bash +apt install -y wget ca-certificates +wget -qO - https://deb.lgy.fr/install.sh | bash +apt-get update + + +apt-get install -y homeassistant + +systemctl enable --now homeassistant +``` diff --git a/ressources/homeassistant/debmaker b/ressources/homeassistant/debmaker new file mode 100755 index 0000000..82c1cfa --- /dev/null +++ b/ressources/homeassistant/debmaker @@ -0,0 +1,32 @@ +#!/bin/bash + +VERSION=2023.10.3 +APP=homeassistant +DEPOT=https://github.com/home-assistant/core.git +GIT_VERSION=${VERSION} +DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M) +DEBIAN_VERSION_CODENAME=bookworm +IMAGE_SIZE=10 +PACKAGE_DEPENDENCY="" + +main(){ + base_package_upgrade + install_package_dependency + get_git_source + #makedeb +} + +makedeb(){ + PATH_DEB=/tmp/src/rootfs + + mkdir -p ${PATH_DEB}/etc/babybuddy/ + mv /tmp/${APP}/babybuddy/settings/production.example.py ${PATH_DEB}/etc/babybuddy/production.py + + mkdir -p ${PATH_DEB}/usr/share/ + cp -fr /tmp/${APP}/ ${PATH_DEB}/usr/share/ + + ln -s /etc/babybuddy/production.py ${PATH_DEB}/usr/share/babybuddy/babybuddy/settings/production.py + + sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control + fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist +} diff --git a/ressources/homeassistant/rootfs/DEBIAN/changelog b/ressources/homeassistant/rootfs/DEBIAN/changelog new file mode 100644 index 0000000..e69de29 diff --git a/ressources/homeassistant/rootfs/DEBIAN/conffiles b/ressources/homeassistant/rootfs/DEBIAN/conffiles new file mode 100644 index 0000000..fd497bc --- /dev/null +++ b/ressources/homeassistant/rootfs/DEBIAN/conffiles @@ -0,0 +1 @@ +/etc/babybuddy/production.py diff --git a/ressources/homeassistant/rootfs/DEBIAN/control b/ressources/homeassistant/rootfs/DEBIAN/control new file mode 100644 index 0000000..acef0fa --- /dev/null +++ b/ressources/homeassistant/rootfs/DEBIAN/control @@ -0,0 +1,8 @@ +Package: babybuddy +Version: %VERSION% +Section: contrib +Priority: optional +Architecture: all +Depends: python3 ( >= 3.7 ), python-is-python3, python3-venv +Maintainer: Thomas Legay +Description: babybuddy diff --git a/ressources/homeassistant/rootfs/DEBIAN/postinst b/ressources/homeassistant/rootfs/DEBIAN/postinst new file mode 100755 index 0000000..5733e5b --- /dev/null +++ b/ressources/homeassistant/rootfs/DEBIAN/postinst @@ -0,0 +1,19 @@ +#!/bin/bash +APP=homeassistant +HOMEDIR=/var/lib/homeassistant/ + +[ -d ${HOMEDIR} ] || mkdir -p ${HOMEDIR} +id ${APP} &> /dev/null || useradd ${APP} -r -s /bin/false -d ${HOMEDIR} + +chown ${APP}:${APP} ${HOMEDIR} + +systemctl | grep ${APP} | grep -q running && systemctl daemon-reload && systemctl restart ${APP} + +if [[ $(systemctl list-unit-files | grep ${APP}.services) -eq 0 ]] +then + systemctl daemon-reload + if [ "$(systemctl is-active ${APP}.service)" != "inactive" ] + then + systemctl restart ${APP} + fi +fi diff --git a/ressources/homeassistant/rootfs/etc/default/babybuddy b/ressources/homeassistant/rootfs/etc/default/babybuddy new file mode 100644 index 0000000..e0d94a1 --- /dev/null +++ b/ressources/homeassistant/rootfs/etc/default/babybuddy @@ -0,0 +1 @@ +DJANGO_SETTINGS_MODULE=babybuddy.settings.production diff --git a/ressources/homeassistant/rootfs/usr/lib/systemd/system/babybuddy.service b/ressources/homeassistant/rootfs/usr/lib/systemd/system/babybuddy.service new file mode 100644 index 0000000..fd818c6 --- /dev/null +++ b/ressources/homeassistant/rootfs/usr/lib/systemd/system/babybuddy.service @@ -0,0 +1,20 @@ +[Unit] +Description=homeassistant +After=network.target + +[Service] +User=homeassistant +Group=homeassistant +EnvironmentFile=/etc/default/homeassistant +ExecStartPre=python3 -m venv /var/lib/homeassistant/.venv +ExecStartPre=/var/lib/homeassistant/.venv/bin/pip install -r /usr/share/homeassistant/requirements.txt +ExecStartPre=/var/lib/homeassistant/.venv/bin/python3 /usr/share/homeassistant/manage.py migrate +ExecStartPre=/var/lib/homeassistant/.venv/bin/python3 /usr/share/homeassistant/manage.py createcachetable +ExecStart=/var/lib/homeassistant/.venv/bin/python3 /usr/share/homeassistant/manage.py runserver 0.0.0.0:8000 +WorkingDirectory=/var/lib/homeassistant +StandardOutput=inherit +StandardError=inherit +Restart=always + +[Install] +WantedBy=multi-user.target diff --git a/ressources/joplin-desktop/debmaker b/ressources/joplin-desktop/debmaker index a8b7ef6..4ccd1ae 100755 --- a/ressources/joplin-desktop/debmaker +++ b/ressources/joplin-desktop/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2.13.4 +VERSION=2.13.6 APP=joplin-desktop GIT_VERSION=v${VERSION} DEB_VERSION=${VERSION}-$(date +%Y%m%d%H%M) diff --git a/ressources/joplin-server/debmaker b/ressources/joplin-server/debmaker index 2e67fc1..b7da54d 100755 --- a/ressources/joplin-server/debmaker +++ b/ressources/joplin-server/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2.13.3 +VERSION=2.13.5 APP=joplin-server GIT_VERSION=server-v${VERSION} DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) diff --git a/ressources/kimai2/debmaker b/ressources/kimai2/debmaker index 6424fe4..00627f2 100755 --- a/ressources/kimai2/debmaker +++ b/ressources/kimai2/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2.1.0 +VERSION=2.4.1 APP=kimai2 DEPOT=https://github.com/kevinpapst/kimai2.git GIT_VERSION=${VERSION} diff --git a/ressources/mautrix-whatsapp/debmaker b/ressources/mautrix-whatsapp/debmaker index bf8103a..59ed59e 100755 --- a/ressources/mautrix-whatsapp/debmaker +++ b/ressources/mautrix-whatsapp/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=0.10.3 +VERSION=0.10.4 APP=mautrix-whatsapp DEPOT=https://github.com/mautrix/whatsapp.git GIT_VERSION=v${VERSION} diff --git a/ressources/metabase/debmaker b/ressources/metabase/debmaker index f9a6fe1..457c306 100755 --- a/ressources/metabase/debmaker +++ b/ressources/metabase/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=0.47.6 +VERSION=0.47.8 APP=metabase DEPOT=https://github.com/metabase/metabase.git GIT_VERSION=v$VERSION diff --git a/ressources/moodle/README.MD b/ressources/moodle/README.MD new file mode 100644 index 0000000..4965849 --- /dev/null +++ b/ressources/moodle/README.MD @@ -0,0 +1,17 @@ +#### moodle + +##### Information +Site : https://moodle.org/ + +Source : git://git.moodle.org/moodle.git + +##### Install + +```bash +apt install -y wget ca-certificates +wget -qO - https://deb.lgy.fr/install.sh | bash +apt-get update + +apt-get install -y moodle + +``` diff --git a/ressources/moodle/debmaker b/ressources/moodle/debmaker new file mode 100755 index 0000000..65dbdcd --- /dev/null +++ b/ressources/moodle/debmaker @@ -0,0 +1,31 @@ +#!/bin/bash + +VERSION=4.3.0 +APP=moodle +DEPOT=git://git.moodle.org/moodle.git +GIT_VERSION=v$VERSION +DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) +DEBIAN_VERSION_CODENAME=bookworm +IMAGE_SIZE=2 +PACKAGE_DEPENDENCY="" + +main(){ + base_package_upgrade + install_package_dependency + default_prebuild + build + makedeb +} + +build(){ + cd /tmp/${APP} +} + +makedeb(){ + PATH_DEB=/tmp/src/rootfs + + mv /tmp/${APP} ${PATH_DEB_INSTALL}/usr/share/ + + sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control + fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist +} diff --git a/ressources/moodle/rootfs/DEBIAN/changelog b/ressources/moodle/rootfs/DEBIAN/changelog new file mode 100644 index 0000000..e69de29 diff --git a/ressources/moodle/rootfs/DEBIAN/control b/ressources/moodle/rootfs/DEBIAN/control new file mode 100644 index 0000000..febc85d --- /dev/null +++ b/ressources/moodle/rootfs/DEBIAN/control @@ -0,0 +1,8 @@ +Package: moodle +Version: %VERSION% +Section: contrib +Priority: optional +Architecture: all +Maintainer: Thomas Legay +Depends: php-gd, php-soap, php-intl, php-mbstring, php-xml, php-pgsql, php-curl, php-zip +Description: moodle diff --git a/ressources/rss-bridge/debmaker b/ressources/rss-bridge/debmaker index c0b496f..c13044c 100755 --- a/ressources/rss-bridge/debmaker +++ b/ressources/rss-bridge/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2023-07-13 +VERSION=2023-09-24 APP=rss-bridge DEPOT=https://github.com/RSS-Bridge/rss-bridge.git GIT_VERSION=$VERSION diff --git a/ressources/sqlpage/README.MD b/ressources/sqlpage/README.MD new file mode 100644 index 0000000..e454dff --- /dev/null +++ b/ressources/sqlpage/README.MD @@ -0,0 +1,20 @@ +#### vaultwarden + +##### Information +Site : https://github.com/dani-garcia/vaultwarden + +Source : https://github.com/dani-garcia/vaultwarden + +##### Install + +```bash +apt install -y wget ca-certificates +wget -qO - https://deb.lgy.fr/install.sh | bash +apt-get update +apt install vaultwarden vaultwarden-web + +#Edit /etc/default/vaultwarden + +systemctl enable --now vaultwarden +``` + diff --git a/ressources/sqlpage/debmaker b/ressources/sqlpage/debmaker new file mode 100755 index 0000000..fab002e --- /dev/null +++ b/ressources/sqlpage/debmaker @@ -0,0 +1,33 @@ +#!/bin/bash + +VERSION=0.15.1 +APP=sqlpage +GIT_VERSION=v$VERSION +DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) +DEBIAN_VERSION_CODENAME=bookworm +IMAGE_SIZE=8 +DEPOT=https://github.com/lovasoa/SQLpage.git +PACKAGE_DEPENDENCY="build-essential" + +main(){ + base_package_upgrade + install_package_dependency + install_rust + default_prebuild + build + #makedeb +} + +build() { + cd /tmp/${APP} + source ~/.cargo/env + cargo build --profile superoptimized --locked +} + +makedeb(){ + PATH_DEB=/tmp/src/rootfs + + cp -fr /tmp/${APP}/target/release/vaultwarden ${PATH_DEB}/usr/lib/vaultwarden/ + sed -i "s/%VERSION%/$DEB_VERSION/" ${PATH_DEB}/DEBIAN/control + fakeroot dpkg-deb -Z gzip --build ${PATH_DEB} /tmp/dist +} diff --git a/ressources/sqlpage/rootfs/DEBIAN/changelog b/ressources/sqlpage/rootfs/DEBIAN/changelog new file mode 100644 index 0000000..e69de29 diff --git a/ressources/sqlpage/rootfs/DEBIAN/conffiles b/ressources/sqlpage/rootfs/DEBIAN/conffiles new file mode 100644 index 0000000..bae2624 --- /dev/null +++ b/ressources/sqlpage/rootfs/DEBIAN/conffiles @@ -0,0 +1 @@ +/etc/default/vaultwarden diff --git a/ressources/sqlpage/rootfs/DEBIAN/control b/ressources/sqlpage/rootfs/DEBIAN/control new file mode 100644 index 0000000..24ff2bb --- /dev/null +++ b/ressources/sqlpage/rootfs/DEBIAN/control @@ -0,0 +1,9 @@ +Package: vaultwarden +Version: %VERSION% +Section: contrib +Priority: optional +Architecture: all +Depends: libmariadb-dev, libpq-dev, libmysql++-dev +Maintainer: Thomas Legay +Description: vaultwarden service + diff --git a/ressources/sqlpage/rootfs/DEBIAN/postinst b/ressources/sqlpage/rootfs/DEBIAN/postinst new file mode 100755 index 0000000..ed7b997 --- /dev/null +++ b/ressources/sqlpage/rootfs/DEBIAN/postinst @@ -0,0 +1,4 @@ +#!/bin/bash + +id vaultwarden&> /dev/null || useradd vaultwarden -r -s /bin/false -md /var/lib/vaultwarden +chown vaultwarden:vaultwarden /var/lib/vaultwarden diff --git a/ressources/sqlpage/rootfs/etc/default/vaultwarden b/ressources/sqlpage/rootfs/etc/default/vaultwarden new file mode 100644 index 0000000..50cce1b --- /dev/null +++ b/ressources/sqlpage/rootfs/etc/default/vaultwarden @@ -0,0 +1,20 @@ +#See src/config.rs + +WEB_VAULT_FOLDER=/usr/share/vaultwarden-web/ +DATA_FOLDER=/var/lib/vaultwarden/ +SIGNUPS_ALLOWED=false +WEBSOCKET_ENABLED=true +ADMIN_TOKEN= +SMTP_HOST= +SMTP_FROM= +SMTP_PORT= +SMTP_SSL=true +SMTP_USERNAME= +SMTP_PASSWORD= +RUST_BACKTRACE=full +DOMAIN=https://vaultwarden.domain.com +ADMIN_TOKEN= +ROCKET_ADDRESS=0.0.0.0 +WEBSOCKET_ENABLED=true +WEBSOCKET_ADDRESS=0.0.0.0 +DATABASE_URL= diff --git a/ressources/sqlpage/rootfs/usr/lib/systemd/system/vaultwarden.service b/ressources/sqlpage/rootfs/usr/lib/systemd/system/vaultwarden.service new file mode 100644 index 0000000..c22c336 --- /dev/null +++ b/ressources/sqlpage/rootfs/usr/lib/systemd/system/vaultwarden.service @@ -0,0 +1,32 @@ +[Unit] +Description=vaultwarden Server (Rust Edition) +Documentation=https://github.com/dani-garcia/vaultwarden + +After=network.target + +# MariaDB +# After=network.target mariadb.service +# Requires=mariadb.service + +# Mysql +# After=network.target mysqld.service +# Requires=mysqld.service + +# PostgreSQL +# After=network.target postgresql.service +# Requires=postgresql.service + +[Service] +User=vaultwarden +Group=vaultwarden +EnvironmentFile=/etc/default/vaultwarden +ExecStart=/usr/lib/vaultwarden/vaultwarden +PrivateTmp=true +PrivateDevices=true +ProtectHome=true +ProtectSystem=strict +WorkingDirectory=/var/lib//vaultwarden/ +ReadWriteDirectories=/var/lib/vaultwarden/ + +[Install] +WantedBy=multi-user.target diff --git a/ressources/sqlpage/rootfs/usr/lib/vaultwarden/.gitkeep b/ressources/sqlpage/rootfs/usr/lib/vaultwarden/.gitkeep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/ressources/sqlpage/rootfs/usr/lib/vaultwarden/.gitkeep @@ -0,0 +1 @@ + diff --git a/ressources/sqlpage/rootfs/var/lib/vaultwarden/.keep b/ressources/sqlpage/rootfs/var/lib/vaultwarden/.keep new file mode 100644 index 0000000..e69de29 diff --git a/ressources/uptime-kuma/debmaker b/ressources/uptime-kuma/debmaker index 038e206..c384100 100755 --- a/ressources/uptime-kuma/debmaker +++ b/ressources/uptime-kuma/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=1.23.3 +VERSION=1.23.6 APP=uptime-kuma GIT_VERSION=${VERSION} DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) diff --git a/ressources/vaultwarden-web/debmaker b/ressources/vaultwarden-web/debmaker index 8a580c0..a8342f9 100755 --- a/ressources/vaultwarden-web/debmaker +++ b/ressources/vaultwarden-web/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=2023.8.2 +VERSION=2023.10.0 APP=vaultwarden-web GIT_VERSION=v$VERSION DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M) diff --git a/ressources/vaultwarden/debmaker b/ressources/vaultwarden/debmaker index 8370a4f..d6e48ae 100755 --- a/ressources/vaultwarden/debmaker +++ b/ressources/vaultwarden/debmaker @@ -1,6 +1,6 @@ #!/bin/bash -VERSION=1.29.2 +VERSION=1.30.1 APP=vaultwarden GIT_VERSION=$VERSION DEB_VERSION=$VERSION-$(date +%Y%m%d%H%M)