summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVlad Glagolev2010-07-30 10:36:31 +0400
committerVlad Glagolev2010-07-30 10:36:31 +0400
commit6ab64f574f164abca331f6e4cd6993540045c40d (patch)
treeb9ec8ae493b4c9f4413585ca487163df76211e3f
parent608e4ad8e5c4665f8786f315c712020ccd2a58eb (diff)
mod_umask: new spell, umask module for Apache 2
-rw-r--r--ChangeLog3
-rwxr-xr-xhttp/mod_umask/DEPENDS1
-rwxr-xr-xhttp/mod_umask/DETAILS16
-rw-r--r--http/mod_umask/HISTORY2
4 files changed, 22 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4eb269264c..c2765a86e0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2010-07-30 Vlad Glagolev <stealth@sourcemage.org>
+ * http/mod_umask: new spell, umask module for Apache 2
+
2010-07-25 Ladislav Hagara <hgr@vabo.cz>
* doc/zathura: new spell, PDF viewer
diff --git a/http/mod_umask/DEPENDS b/http/mod_umask/DEPENDS
new file mode 100755
index 0000000000..341c4e26f6
--- /dev/null
+++ b/http/mod_umask/DEPENDS
@@ -0,0 +1 @@
+depends APACHE2
diff --git a/http/mod_umask/DETAILS b/http/mod_umask/DETAILS
new file mode 100755
index 0000000000..31d9d29a2d
--- /dev/null
+++ b/http/mod_umask/DETAILS
@@ -0,0 +1,16 @@
+ SPELL=mod_umask
+ VERSION=0.1.0
+ SOURCE_HASH=sha512:804f4f28f3145d0290a5dada93a6d3822cb432456fdf35b2d4b5ca19b0d795d7060eff5b9ef97ca8c99581d6f5cdced06dacae532a803b0133f13298577473c3
+ SOURCE=$SPELL-$VERSION.tar.bz2
+ LICENSE[0]=APACHE
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ SOURCE_URL[0]=http://www.outoforder.cc/downloads/$SPELL/$SOURCE
+ WEB_SITE=http://www.outoforder.cc/projects/apache/mod_umask/
+ ENTERED=20100730
+ SHORT="umask module for Apache 2"
+cat << EOF
+mod_umask sets the Unix umask of the Apache HTTPd process after it has started.
+This is useful when accessing Subversion from both mod_dav_svn and via a local
+client with a file:// url. Without setting a proper umask the file permissions
+can create a repository that is not easily accessable from both.
+EOF
diff --git a/http/mod_umask/HISTORY b/http/mod_umask/HISTORY
new file mode 100644
index 0000000000..889a0234b6
--- /dev/null
+++ b/http/mod_umask/HISTORY
@@ -0,0 +1,2 @@
+2010-07-30 Vlad Glagolev <stealth@sourcemage.org>
+ * DETAILS, DEPENDS: created the spell