Add package dufs
This commit is contained in:
parent
fce0ac96cc
commit
eb08c76520
32
dufs/DEBBUILD
Normal file
32
dufs/DEBBUILD
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
#/usr/bin/env bash
|
||||||
|
|
||||||
|
pkgname="dufs"
|
||||||
|
pkgver="0.33.0"
|
||||||
|
pkgrel=1
|
||||||
|
pkgdesc="A file server that supports static serving, uploading, searching, accessing control, webdav..."
|
||||||
|
url="https://github.com/sigoden/dufs"
|
||||||
|
maintainer="Leafee98 <me@leafee98.com>"
|
||||||
|
|
||||||
|
arch="x86_64"
|
||||||
|
platform="unknown-linux-musl"
|
||||||
|
|
||||||
|
|
||||||
|
source=(
|
||||||
|
"dufs-v${pkgver}-${arch}-${platform}.tar.gz::https://github.com/sigoden/dufs/releases/download/v${pkgver}/dufs-v${pkgver}-${arch}-${platform}.tar.gz"
|
||||||
|
"dufs.service::materials/dufs.service"
|
||||||
|
)
|
||||||
|
|
||||||
|
function package {
|
||||||
|
install -Dm755 "${srcdir}/dufs" "${pkgdir}/usr/local/bin/dufs"
|
||||||
|
install -Dm644 "${srcdir}/dufs.service" "${pkgdir}/usr/lib/systemd/system/dufs.service"
|
||||||
|
}
|
||||||
|
|
||||||
|
function debian_postinst {
|
||||||
|
cat << EOF
|
||||||
|
#!/usr/bin/env bash
|
||||||
|
useradd --system dufs
|
||||||
|
mkdir -p /srv/dufs
|
||||||
|
chown dufs:dufs -R /srv/dufs
|
||||||
|
systemctl daemon-reload
|
||||||
|
EOF
|
||||||
|
}
|
13
dufs/materials/dufs.service
Normal file
13
dufs/materials/dufs.service
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
[Unit]
|
||||||
|
Description=A simple file server support webdav
|
||||||
|
After=network.target
|
||||||
|
|
||||||
|
[Service]
|
||||||
|
Type=simple
|
||||||
|
User=dufs
|
||||||
|
Group=dufs
|
||||||
|
ExecStart=/usr/local/bin/dufs --auth /@dufs:dufs /srv/dufs
|
||||||
|
Restart=on-failure
|
||||||
|
|
||||||
|
[Install]
|
||||||
|
WantedBy=multi-user.target
|
Loading…
Reference in a new issue