Compare commits

...

2 commits

Author SHA1 Message Date
leafee98 a928256a4f Add systemd service for static-deployer
All checks were successful
ci/woodpecker/push/build Pipeline was successful
2023-08-18 20:49:35 +08:00
leafee98 686db54336 Fix: adduser instead of useradd in postinst for all packages 2023-08-18 20:41:07 +08:00
5 changed files with 24 additions and 12 deletions

View file

@ -3,7 +3,7 @@
pkgname="dufs"
arch="amd64"
pkgver="0.35.0"
pkgrel=1
pkgrel=2
pkgdesc="A file server that supports static serving, uploading, searching, accessing control, webdav..."
url="https://github.com/sigoden/dufs"
maintainer="Leafee98 <me@leafee98.com>"
@ -25,7 +25,7 @@ function package {
function debian_postinst {
cat << EOF
#!/usr/bin/env bash
useradd --system dufs
adduser --system dufs
mkdir -p /srv/dufs
chown dufs:dufs -R /srv/dufs
systemctl daemon-reload

View file

@ -2,7 +2,7 @@
pkgname="forgejo"
arch="amd64"
pkgrel=2
pkgrel=3
pkgver="1.20.1-0"
pkgdesc="A painless selfhost git service."
url="https://codeberg.org/forgejo/forgejo"
@ -27,7 +27,7 @@ mkdir -p /var/lib/forgejo
mkdir -p /etc/forgejo/conf
touch /etc/forgejo/conf/app.ini
useradd --system git
adduser --system git
chown -R git:git /var/lib/forgejo /etc/forgejo /etc/forgejo/app.ini
systemctl daemon-reload

View file

@ -2,7 +2,7 @@
pkgname="plik-bin"
arch="amd64"
pkgrel=2
pkgrel=3
pkgver="1.3.7"
pkgdesc="Plik is a temporary file upload system (Wetransfer like) in Go."
_arch="amd64"
@ -29,7 +29,7 @@ function package {
function debian_postinst {
cat << EOF
#!/usr/bin/env bash
useradd --system plik
adduser --system plik
systemctl daemon-reload
EOF
}

View file

@ -3,24 +3,22 @@
pkgname="static-deployer"
arch="amd64"
pkgver=0.0.6.g7067e8f
pkgrel=1
pkgrel=2
pkgdesc="A simple daemon to deploy static site"
url="https://git.leafee98.com/leafee98/static_deployer"
maintainer="Leafee98 <me@leafee98.com>"
source=(
"static_deployer::git+https://git.leafee98.com/leafee98/static_deployer.git"
"static-deployer.service::materials/static-deployer.service"
)
function pkgver {
git -C src/static_deployer describe --tags --long | sed -e 's/^v//; s/-/./g'
}
function pkgver {
git -C "${srcdir}/static_deployer" describe --tags --long | sed 's/^v//;s/-/./g'
}
function package {
install -D "${srcdir}/static_deployer/main.py" "${pkgdir}/usr/bin/static-deployer"
install -Dm755 "${srcdir}/static_deployer/main.py" "${pkgdir}/usr/bin/static-deployer"
install -Dm644 "${srcdir}/static-deployer.service" "${pkgdir}/usr/lib/systemd/system/static-deployer.service"
}

View file

@ -0,0 +1,14 @@
[Unit]
Description=A simple daemon to deploy static site
After=network.target apache2.service
[Service]
# User=www-data
# Group=www-data
ExecStart=/usr/bin/static-deployer --archive-dir /srv/www/blog/archive --extract-dir /srv/www/blog/extract --symlink-path /srv/www/blog/serve --port 8084
Restart=on-failure
[Install]
WantedBy=multi-user.target