Compare commits

..

No commits in common. "ada538bb4c1ecfc484d61c02275282bc7a621821" and "4a0e38c29f914fd174e2609a225631907ccfd433" have entirely different histories.

2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@
pkgname="dufs"
arch="amd64"
pkgver="0.37.1"
pkgver="0.36.0"
pkgrel=1
pkgdesc="A file server that supports static serving, uploading, searching, accessing control, webdav..."
url="https://github.com/sigoden/dufs"
@ -18,7 +18,7 @@ source=(
)
function package {
install -Dm755 "${srcdir}/dufs" "${pkgdir}/usr/bin/dufs"
install -Dm755 "${srcdir}/dufs" "${pkgdir}/usr/local/bin/dufs"
install -Dm644 "${srcdir}/dufs.service" "${pkgdir}/usr/lib/systemd/system/dufs.service"
}

View file

@ -6,7 +6,7 @@ After=network.target
Type=simple
User=dufs
Group=dufs
ExecStart=/usr/bin/dufs --auth dufs:dufs@/:rw /srv/dufs
ExecStart=/usr/local/bin/dufs --auth dufs:dufs@/:rw /srv/dufs
Restart=on-failure
[Install]