2008-07-27 06:54:15 +02:00
|
|
|
#!/usr/bin/perl
|
2008-07-27 22:07:36 +02:00
|
|
|
# Ikiwiki setup automator.
|
2008-07-27 06:54:15 +02:00
|
|
|
#
|
|
|
|
# This setup file causes ikiwiki to create a wiki, check it into revision
|
|
|
|
# control, generate a setup file for the new wiki, and set everything up.
|
|
|
|
#
|
2008-07-27 22:38:11 +02:00
|
|
|
# Just run: ikiwiki -setup /etc/ikiwiki/auto.setup
|
2008-07-27 06:54:15 +02:00
|
|
|
#
|
2008-07-27 21:16:03 +02:00
|
|
|
# By default, it asks a few questions, and confines itself to the user's home
|
2008-07-27 06:54:15 +02:00
|
|
|
# directory. You can edit it to change what it asks questions about, or to
|
|
|
|
# modify the values to use site-specific settings.
|
|
|
|
|
|
|
|
require IkiWiki::Setup::Automator;
|
|
|
|
|
|
|
|
our $wikiname=IkiWiki::Setup::Automator::ask(
|
2008-08-22 04:49:50 +02:00
|
|
|
gettext("What will the wiki be named?"), gettext("wiki"));
|
2008-07-27 06:54:15 +02:00
|
|
|
our $rcs=IkiWiki::Setup::Automator::ask(
|
2008-08-22 04:49:50 +02:00
|
|
|
gettext("What revision control system to use?"), "git");
|
2008-07-27 21:16:03 +02:00
|
|
|
our $admin=IkiWiki::Setup::Automator::ask(
|
2008-08-22 04:49:50 +02:00
|
|
|
gettext("What wiki user (or openid) will be wiki admin?"), $ENV{USER});
|
2008-08-22 04:48:07 +02:00
|
|
|
use Net::Domain q{hostfqdn};
|
|
|
|
our $domain=hostfqdn() || ikiwiki::setup::automator::ask(
|
2008-08-22 04:49:50 +02:00
|
|
|
gettext("What is the domain name of the web server?"), "");
|
2008-07-27 06:54:15 +02:00
|
|
|
|
2008-07-27 21:16:03 +02:00
|
|
|
IkiWiki::Setup::Automator->import(
|
2008-07-27 06:54:15 +02:00
|
|
|
wikiname => $wikiname,
|
2008-07-27 21:16:03 +02:00
|
|
|
adminuser => [$admin],
|
2008-07-27 06:54:15 +02:00
|
|
|
rcs => $rcs,
|
|
|
|
srcdir => "$ENV{HOME}/$wikiname",
|
|
|
|
destdir => "$ENV{HOME}/public_html/$wikiname",
|
2008-08-23 03:19:53 +02:00
|
|
|
repository => "$ENV{HOME}/$wikiname.".($rcs eq "monotone" ? "mtn" : $rcs),
|
2008-07-27 21:16:03 +02:00
|
|
|
dumpsetup => "$ENV{HOME}/$wikiname.setup",
|
2008-08-22 04:48:07 +02:00
|
|
|
url => "http://$domain/~$ENV{USER}/$wikiname",
|
|
|
|
cgiurl => "http://$domain/~$ENV{USER}/$wikiname/ikiwiki.cgi",
|
2008-07-27 07:39:11 +02:00
|
|
|
cgi_wrapper => "$ENV{HOME}/public_html/$wikiname/ikiwiki.cgi",
|
2008-08-22 04:48:07 +02:00
|
|
|
adminemail => "$ENV{USER}\@$domain",
|
2008-08-04 04:17:45 +02:00
|
|
|
add_plugins => [qw{goodstuff websetup}],
|
|
|
|
disable_plugins => [qw{}],
|
2008-07-27 07:39:11 +02:00
|
|
|
libdir => "$ENV{HOME}/.ikiwiki",
|
|
|
|
rss => 1,
|
|
|
|
atom => 1,
|
|
|
|
syslog => 1,
|
|
|
|
prefix_directives => 1,
|
|
|
|
hardlink => 1,
|
2008-07-27 22:07:36 +02:00
|
|
|
)
|