webfs: dropped

This commit is contained in:
Juergen Daubert 2019-02-06 12:51:11 +01:00
parent 7b58cd6b59
commit f656ca9614
4 changed files with 0 additions and 57 deletions

View File

@ -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

View File

@ -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

View File

@ -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
}

View File

@ -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