diff options
author | Juergen Daubert <jue@jue.li> | 2006-12-02 10:06:41 +0100 |
---|---|---|
committer | Juergen Daubert <jue@jue.li> | 2006-12-02 10:06:41 +0100 |
commit | e81170a370c8d8a1c1408a0e394a18d8691af8fd (patch) | |
tree | 9e413f284596e7c24301df972e9225f4e6c59f39 /webfs | |
parent | 13de90f79061eed0593926ebc9ce599305f517c0 (diff) | |
download | opt-e81170a370c8d8a1c1408a0e394a18d8691af8fd.tar.gz opt-e81170a370c8d8a1c1408a0e394a18d8691af8fd.tar.xz |
webfs: renamed startscript, run as user www
Diffstat (limited to 'webfs')
-rw-r--r-- | webfs/.footprint | 2 | ||||
-rw-r--r-- | webfs/.md5sum | 2 | ||||
-rw-r--r-- | webfs/Pkgfile | 6 | ||||
-rwxr-xr-x | webfs/webfsd (renamed from webfs/httpd) | 4 |
4 files changed, 7 insertions, 7 deletions
diff --git a/webfs/.footprint b/webfs/.footprint index ef03b6ac8..65083f596 100644 --- a/webfs/.footprint +++ b/webfs/.footprint @@ -1,6 +1,6 @@ drwxr-xr-x root/root etc/ drwxr-xr-x root/root etc/rc.d/ --rwxr-xr-x root/root etc/rc.d/httpd +-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 diff --git a/webfs/.md5sum b/webfs/.md5sum index fad6acd1f..82546bf4d 100644 --- a/webfs/.md5sum +++ b/webfs/.md5sum @@ -1,2 +1,2 @@ -30cbf8683e3a11aea7a3c5343106fdce httpd 6dc125fe160479404147e7bbfc781dbc webfs-1.21.tar.gz +9b05d0083cfa72ef48661de0a064c061 webfsd diff --git a/webfs/Pkgfile b/webfs/Pkgfile index 679268385..f2bf8d5a6 100644 --- a/webfs/Pkgfile +++ b/webfs/Pkgfile @@ -5,12 +5,12 @@ name=webfs version=1.21 -release=2 +release=3 source=(http://dl.bytesex.org/releases/webfs/webfs-$version.tar.gz \ - httpd) + webfsd) build() { cd $name-$version make prefix=$PKG/usr mandir=$PKG/usr/man install - install -D -m 0755 ../httpd $PKG/etc/rc.d/httpd + install -D -m 0755 $SRC/webfsd $PKG/etc/rc.d/webfsd } diff --git a/webfs/httpd b/webfs/webfsd index 77063b16e..2e54e42d8 100755 --- a/webfs/httpd +++ b/webfs/webfsd @@ -1,11 +1,11 @@ #!/bin/sh # -# /etc/rc.d/httpd: start/stop http daemon +# /etc/rc.d/httpd: start/stop webfs http daemon # case $1 in start) - /usr/bin/webfsd -u nobody -g nobody -r /var/www -p 80 -f index.html + /usr/bin/webfsd -u www -g www -r /var/www -p 80 -f index.html ;; stop) killall -q /usr/bin/webfsd |