From 81e0af879adf6781dc435a3e4692b42e2e14a367 Mon Sep 17 00:00:00 2001 From: Julian Blake Kongslie Date: Thu, 5 May 2011 14:38:07 -0700 Subject: Add a tweakable for Joe. --- libpiny/lib/Piny/Config.pm | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'libpiny/lib/Piny/Config.pm') 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. -- cgit v1.2.3