Skip to content

Commit

Permalink
Add missing auto_install features to new installer
Browse files Browse the repository at this point in the history
Signed-off-by: Chris Cormack <crc@liblime.com>
  • Loading branch information
mjray authored and Chris Cormack committed Sep 6, 2007
1 parent e449c13 commit 28695e9
Show file tree
Hide file tree
Showing 10 changed files with 12 additions and 3,286 deletions.
5 changes: 2 additions & 3 deletions Makefile.PL
Expand Up @@ -197,11 +197,10 @@ C4/*.pm is copied to perl's lib namespace.
=pod =pod
CGIs are copied to koha/cgi-bin CGIs are copied to koha/cgi-bin
and other scripts to koha/examples. and other scripts to koha/scripts.
=cut =cut
# Misc scripts to koha/examples foreach my $src ("mainpage.pl","help.pl",glob("*/*.pl"),glob("installer/*.pm"),glob("*/*/*.pl"),glob("*/*/*/*.pl")) {
foreach my $src (glob("*.pl"),glob("*/*.pl"),glob("installer/*.pm"),glob("*/*/*.pl"),glob("*/*/*/*.pl")) {
if ($src =~ /(misc|updater|rss)\//) { if ($src =~ /(misc|updater|rss)\//) {
$result{$src} = '$(INST_LIBDIR)/koha/scripts/'.$src; $result{$src} = '$(INST_LIBDIR)/koha/scripts/'.$src;
} else { } else {
Expand Down
10 changes: 5 additions & 5 deletions etc/koha-httpd.conf
Expand Up @@ -3,8 +3,8 @@
#NameVirtualHost * #NameVirtualHost *


## OPAC ## OPAC
<VirtualHost __WEBSERVER_IP__:80> <VirtualHost __WEBSERVER_IP__:__WEBSERVER_PORT__>
ServerAdmin webmaster@__WEBSERVER_DOMAIN__ ServerAdmin __WEBMASTER_EMAIL__
DocumentRoot __BASE_DIR__/opac/htdocs DocumentRoot __BASE_DIR__/opac/htdocs
ServerName __WEBSERVER_HOST__ ServerName __WEBSERVER_HOST__
# ServerAlias opac.mydomain.com # ServerAlias opac.mydomain.com
Expand Down Expand Up @@ -33,10 +33,10 @@
</VirtualHost> </VirtualHost>


## Intranet ## Intranet
<VirtualHost __WEBSERVER_IP__:8080> <VirtualHost __WEBSERVER_IP__:__WEBSERVER_PORT_LIBRARIAN__>
ServerAdmin webmaster@__WEBSERVER_DOMAIN__ ServerAdmin __WEBMASTER_EMAIL__
DocumentRoot __BASE_DIR__/intranet/htdocs DocumentRoot __BASE_DIR__/intranet/htdocs
ServerName __WEBSERVER_HOST__:8080 ServerName __WEBSERVER_HOST__:__WEBSERVER_PORT_LIBRARIAN__
# ServerAlias intranet.mydomain.com # ServerAlias intranet.mydomain.com
ScriptAlias /cgi-bin/koha/ "__BASE_DIR__/intranet/cgi-bin/" ScriptAlias /cgi-bin/koha/ "__BASE_DIR__/intranet/cgi-bin/"
ScriptAlias /index.html "__BASE_DIR__/intranet/cgi-bin/mainpage.pl" ScriptAlias /index.html "__BASE_DIR__/intranet/cgi-bin/mainpage.pl"
Expand Down

0 comments on commit 28695e9

Please sign in to comment.