diff options
Diffstat (limited to 'install')
-rwxr-xr-x | install/freebsd/INSTALL | 23 | ||||
-rw-r--r-- | install/freebsd/ports | 1 |
2 files changed, 22 insertions, 2 deletions
diff --git a/install/freebsd/INSTALL b/install/freebsd/INSTALL index 28a453ab3..53fc613d1 100755 --- a/install/freebsd/INSTALL +++ b/install/freebsd/INSTALL @@ -1,7 +1,8 @@ #!/bin/sh -cd /usr/ports/sysutils/portupgrade -make install +( cd /usr/ports/sysutils/portupgrade + make install +) pkgdb -u @@ -19,3 +20,21 @@ done for a in Net::SSH DBIx::DBSchema HTML::Widgets::SelectLayers Time::Duration Business::CreditCard; do perl -MCPAN -e"install $a"; done +su -l pgsql -c initdb + +/usr/local/etc/rc.d/010.pgsql.sh start + +pw user add freeside -m + +su -l pgsql -c 'createuser -P freeside' + +su -l freeside -c 'createdb freeside' + +#? +cd ../.. +make install-perl-modules +make create-config +make deploy + +#edit apache config, etc. + diff --git a/install/freebsd/ports b/install/freebsd/ports index 3f0d40773..8381e5a04 100644 --- a/install/freebsd/ports +++ b/install/freebsd/ports @@ -2,6 +2,7 @@ shells/zsh misc/screen ftp/lftp www/mod_perl +www/apache13-modssl net/rsync databases/postgresql7 misc/p5-Array-PrintCols |