From bfb1243dcf51a5d19e292afb092a62f6d3e03358 Mon Sep 17 00:00:00 2001 From: Silvan Calarco Date: Fri, 5 Jan 2024 21:39:15 +0100 Subject: [PATCH] create davfs2 user and group [release 1.5.0-2mamba;Fri Jul 04 2014] --- README.md | 5 +++ davfs2.spec | 93 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 98 insertions(+) create mode 100644 davfs2.spec diff --git a/README.md b/README.md index e56edd7..5b8b7cc 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,7 @@ # davfs2 +Web Distributed Authoring and Versioning (WebDAV), an extension to the HTTP-protocol, allows authoring of resources on a remote web server. davfs2 provides the ability to access such resources like a typical filesystem, allowing for use by standard applications with no built-in support for WebDAV. +davfs2 is designed to fully integrate into the filesystem semantics of Unix-like systems (mount, umount, etc.). davfs2 makes mounting by unprivileged users as easy and secure as possible. +davfs2 does extensive caching to make the file system responsive, to avoid unnecessary network traffic and to prevent data loss, and to cope for slow or unreliable connections. +davfs2 will work with most WebDAV servers needing little or no configuration. + diff --git a/davfs2.spec b/davfs2.spec new file mode 100644 index 0000000..1b3175a --- /dev/null +++ b/davfs2.spec @@ -0,0 +1,93 @@ +%define davfs2_uid 63 +%define davfs2_gid 63 + +Name: davfs2 +Version: 1.5.0 +Release: 2mamba +Summary: Provides the ability to access WebDAV resources like a typical filesystem +Group: Applications/Archiving +Vendor: openmamba +Distribution: openmamba +Packager: Silvan Calarco +URL: http://savannah.nongnu.org/projects/davfs2 +Source: http://download.savannah.gnu.org/releases/davfs2/davfs2-%{version}.tar.gz +License: GPL +## AUTOBUILDREQ-BEGIN +BuildRequires: glibc-devel +BuildRequires: libe2fs-devel +BuildRequires: libexpat-devel +BuildRequires: libkeyutils-devel +BuildRequires: libkrb5-devel +BuildRequires: libneon-devel +BuildRequires: libopenssl-devel +BuildRequires: libz-devel +## AUTOBUILDREQ-END +BuildRoot: %{_tmppath}/%{name}-%{version}-root + +%description +Web Distributed Authoring and Versioning (WebDAV), an extension to the HTTP-protocol, allows authoring of resources on a remote web server. davfs2 provides the ability to access such resources like a typical filesystem, allowing for use by standard applications with no built-in support for WebDAV. +davfs2 is designed to fully integrate into the filesystem semantics of Unix-like systems (mount, umount, etc.). davfs2 makes mounting by unprivileged users as easy and secure as possible. +davfs2 does extensive caching to make the file system responsive, to avoid unnecessary network traffic and to prevent data loss, and to cope for slow or unreliable connections. +davfs2 will work with most WebDAV servers needing little or no configuration. + +%debug_package + +%prep +%setup -q + +%build +%configure +%make + +%install +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" +%makeinstall + +%find_lang %{name} || touch %{name}.lang + +%clean +[ "%{buildroot}" != / ] && rm -rf "%{buildroot}" + +%pre +if [ $1 -ge 1 ]; then + /usr/sbin/groupadd -r -g %{davfs2_gid} davfs2 2> /dev/null || : + /usr/sbin/useradd -r -g %{davfs2_uid} -s /bin/false -c "Davfs2 user" -d /dev/null davfs2 2> /dev/null || : +fi +: + +%postun +if [ $1 -eq 0 ]; then + userdel davfs2 2>/dev/null || : + groupdel davfs2 2>/dev/null || : +fi +: + + +%files -f %{name}.lang +%defattr(-,root,root) +%config(noreplace) %{_sysconfdir}/davfs2/davfs2.conf +%config(noreplace) %{_sysconfdir}/davfs2/secrets +/sbin/mount.davfs +/sbin/umount.davfs +%{_sbindir}/mount.davfs +%{_sbindir}/umount.davfs +%dir %{_datadir}/davfs2 +%{_datadir}/davfs2/davfs2.conf +%{_datadir}/davfs2/secrets +%dir %{_datadir}/doc/davfs2 +%{_datadir}/doc/davfs2/* +%{_mandir}/de/man5/davfs2.conf.5* +%{_mandir}/de/man8/mount.davfs.8* +%{_mandir}/de/man8/umount.davfs.8* +%{_mandir}/es/man5/davfs2.conf.5* +%{_mandir}/man5/davfs2.conf.5* +%{_mandir}/man8/mount.davfs.8* +%{_mandir}/man8/umount.davfs.8* +%doc AUTHORS COPYING THANKS + +%changelog +* Fri Jul 04 2014 Silvan Calarco 1.5.0-2mamba +- create davfs2 user and group + +* Wed Jul 02 2014 Silvan Calarco 1.5.0-1mamba +- package created using the webbuild interface