diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-08-02 16:53:20 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-08-02 16:53:20 -0400 |
commit | 15341aed015e4b23d0a1171779d5baa0414c4fad (patch) | |
tree | 77e99932dc62c6f8e3d347d3ffe903b606ccc0b6 /IkiWiki/Plugin | |
parent | 4708aeceb3ec518a00069ad7a112ab0a5596275c (diff) |
don't install demo external plugins by default
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/websetup.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/websetup.pm b/IkiWiki/Plugin/websetup.pm index 0a0d4480f..2b9240a29 100644 --- a/IkiWiki/Plugin/websetup.pm +++ b/IkiWiki/Plugin/websetup.pm @@ -6,7 +6,10 @@ use strict; use IkiWiki 2.00; my @rcs_plugins=(qw{git svn bzr mercurial monotone tla norcs}); -my @default_force_plugins=(qw{amazon_s3}); + +# amazon_s3 is not something that should be enabled via the web. +# external is not a standalone plugin. +my @default_force_plugins=(qw{amazon_s3 external}); sub import { #{{{ hook(type => "checkconfig", id => "websetup", call => \&checkconfig); |