summaryrefslogtreecommitdiff
path: root/install/openbsd/INSTALL
diff options
context:
space:
mode:
authorivan <ivan>2007-05-01 21:27:38 +0000
committerivan <ivan>2007-05-01 21:27:38 +0000
commitcbd81f3258973d4e1c4bc88d8080f58df3b8f842 (patch)
treebdaf8685c16d38a31964d7cce106892a91a453be /install/openbsd/INSTALL
parentb6579b7537bf245857105de184ae4a6995626d2d (diff)
remove obsolete install notes
Diffstat (limited to 'install/openbsd/INSTALL')
-rw-r--r--install/openbsd/INSTALL54
1 files changed, 0 insertions, 54 deletions
diff --git a/install/openbsd/INSTALL b/install/openbsd/INSTALL
deleted file mode 100644
index 1beef9208..000000000
--- a/install/openbsd/INSTALL
+++ /dev/null
@@ -1,54 +0,0 @@
-#!/bin/sh
-
-DIR=`pwd`
-
-#cd /usr/ports
-#cvs -q -d anoncvs@anoncvs6.usa.openbsd.org:/cvs up -r OPENBSD_`uname -r | perl -pe 's/\./_/g;'` -Pd
-
-for a in `grep -v '^ *#' $DIR/ports`
-do cd /usr/ports/$a
- make install
-done
-
-for a in `grep -v '^ *#' $DIR/cpan`
-do perl -MCPAN -e "install $a"
-done
-
-#from /usr/local/share/doc/postgresql/README.OpenBSD
-useradd -c "PostgreSQL Admin User" -g =uid -m -d /var/postgresql -s /bin/sh postgresql
-
-su -l postgresql -c 'mkdir /var/postgresql/data'
-su -l postgresql -c 'initdb -D /var/postgresql/data'
-
-cat <<END >>/etc/rc.local
-if [ -x /usr/local/bin/pg_ctl ]; then
- su -l postgresql -c "/usr/local/bin/pg_ctl start \
- -D /var/postgresql/data -l /var/postgresql/logfile \
- -o '-D /var/postgresql/data'"
- echo -n ' postgresql'
-fi
-END
-
-cat <<END >>/etc/rc.shutdown
-if [ -f /var/postgresql/data/postmaster.pid ]; then
- su -l postgresql -c "/usr/local/bin/pg_ctl stop -m fast \
- -D /var/postgresql/data"
- rm -f /var/postgresql/data/postmaster.pid
-fi
-
-su -l postgresql -c "/usr/local/bin/pg_ctl start \
- -D /var/postgresql/data -l /var/postgresql/logfile \
- -o '-D /var/postgresql/data'"
-
-useradd -c "Freeside" -g =uid -m freeside
-su -l postgresql -c 'createuser -P freeside'
-su -l freeside -c 'createdb freeside'
-
-#?
-cd ../..
-make install-perl-modules
-make create-config
-make deploy
-
-#edit apache config, etc.
-