![](https://secure.gravatar.com/avatar/df8330968b6df8cd1c1942c5fb4b720c.jpg?s=120&d=mm&r=g)
commit f656ca9614c52581415165508b0e43fb5b31a1f2 Author: Juergen Daubert <jue@jue.li> Date: Wed Feb 6 12:51:11 2019 +0100 webfs: dropped diff --git a/webfs/.footprint b/webfs/.footprint deleted file mode 100644 index 1964df0e0..000000000 --- a/webfs/.footprint +++ /dev/null @@ -1,10 +0,0 @@ -drwxr-xr-x root/root etc/ -drwxr-xr-x root/root etc/rc.d/ --rwxr-xr-x root/root etc/rc.d/webfsd -drwxr-xr-x root/root usr/ -drwxr-xr-x root/root usr/bin/ --rwxr-xr-x root/root usr/bin/webfsd -drwxr-xr-x root/root usr/share/ -drwxr-xr-x root/root usr/share/man/ -drwxr-xr-x root/root usr/share/man/man1/ --rw-r--r-- root/root usr/share/man/man1/webfsd.1.gz diff --git a/webfs/.signature b/webfs/.signature deleted file mode 100644 index 1e1485640..000000000 --- a/webfs/.signature +++ /dev/null @@ -1,6 +0,0 @@ -untrusted comment: verify with /etc/ports/opt.pub -RWSE3ohX2g5d/YSYUu3GbkdS9Ojed4j+MgVxDbHfxc1EeS89pYXwx7/JvO7GrPiMihLzv+EuJyXl8/6FotzSNVTuvAg9i7iOiww= -SHA256 (Pkgfile) = 19afaa261f90abea8f337ddd997536a75255eb9ccc7f6e0f00b2d9c11bab19a6 -SHA256 (.footprint) = 9a8ccd7c20a9496ffa24d4d964a5534ae6ce37bcbe32c25c762370c2914964b5 -SHA256 (webfs-1.21.tar.gz) = 98c1cb93473df08e166e848e549f86402e94a2f727366925b1c54ab31064a62a -SHA256 (webfsd) = 5d7054e35724525acf8af6846d37d5053969d22a07e5a9f9ff07dddaa9ebb306 diff --git a/webfs/Pkgfile b/webfs/Pkgfile deleted file mode 100644 index 9fb06bd9b..000000000 --- a/webfs/Pkgfile +++ /dev/null @@ -1,18 +0,0 @@ -# Description: A simple HTTP server for static content -# URL: http://linux.bytesex.org/misc/webfs.html -# Maintainer: Jose V Beneyto, sepen at crux dot nu -# Maintainer: Juergen Daubert, jue at crux dot nu -# Depends on: openssl - -name=webfs -version=1.21 -release=4 -source=(http://dl.bytesex.org/releases/webfs/webfs-$version.tar.gz \ - webfsd) - -build() { - cd $name-$version - sed -i '1a\export SHELL=/bin/bash' GNUmakefile - make prefix=$PKG/usr install - install -D -m 0755 $SRC/webfsd $PKG/etc/rc.d/webfsd -} diff --git a/webfs/webfsd b/webfs/webfsd deleted file mode 100755 index 2e54e42d8..000000000 --- a/webfs/webfsd +++ /dev/null @@ -1,23 +0,0 @@ -#!/bin/sh -# -# /etc/rc.d/httpd: start/stop webfs http daemon -# - -case $1 in -start) - /usr/bin/webfsd -u www -g www -r /var/www -p 80 -f index.html - ;; -stop) - killall -q /usr/bin/webfsd - ;; -restart) - $0 stop - sleep 2 - $0 start - ;; -*) - echo "usage: $0 [start|stop|restart]" - ;; -esac - -# End of file