summaryrefslogtreecommitdiff
path: root/libpiny/lib
diff options
context:
space:
mode:
authorJoe Rayhawk <jrayhawk@omgwallhack.org>2011-05-06 20:12:20 -0700
committerJoe Rayhawk <jrayhawk@omgwallhack.org>2011-05-06 20:12:20 -0700
commit5f5d62581b1818ae50db639641035bd68307b104 (patch)
treed98be8d7e7f9f89557ae113038f7587794d8022b /libpiny/lib
parentd3dbdb810ff97e5ab10d40a4b4723658af66ccd4 (diff)
parent81e0af879adf6781dc435a3e4692b42e2e14a367 (diff)
downloadpiny-code-5f5d62581b1818ae50db639641035bd68307b104.tar.gz
piny-code-5f5d62581b1818ae50db639641035bd68307b104.zip
Merge branch 'master' of piny.be:/srv/git/piny-code
Diffstat (limited to 'libpiny/lib')
-rw-r--r--libpiny/lib/Piny/Config.pm7
1 files changed, 7 insertions, 0 deletions
diff --git a/libpiny/lib/Piny/Config.pm b/libpiny/lib/Piny/Config.pm
index ef18541..c2e5abc 100644
--- a/libpiny/lib/Piny/Config.pm
+++ b/libpiny/lib/Piny/Config.pm
@@ -45,6 +45,12 @@ subtype 'HttpsUrl'
=> message { 'Not a https:// URL.' }
;
+subtype 'RepoPermission'
+ => as 'Str'
+ => where { $_ eq "666" or $_ eq "664" or $_ eq "660" or $_ eq "640" }
+ => message { 'Must be one of 666, 664, 660, or 640.' }
+ ;
+
# Attributes
has 'confpath' =>
@@ -217,6 +223,7 @@ tweakable "piny_ikiwikisrcdir" => "/srv/ikiwiki/", 'PathDir';
tweakable "piny_ikiwikiurl" => "http://piny.be/", 'HttpUrl';
tweakable "piny_ikiwikisecureurl" => "https://secure.piny.be/", 'HttpsUrl';
tweakable "piny_ikiwikisecurepath" => "/srv/www/secure.piny.be/", 'PathDir';
+tweakable "piny_permission" => '660', 'RepoPermission';
tweakable "receive_denynonfastforwards" => "true", 'GitBool';
# User-specific tweakables, in the users' ~/.gitconfig files.