diff options
author | cvs2git <cvs2git> | 2003-09-25 09:40:06 +0000 |
---|---|---|
committer | cvs2git <cvs2git> | 2003-09-25 09:40:06 +0000 |
commit | f84c9eb1c4479cc84ec62b0822c18579ec8f683a (patch) | |
tree | b22f6192ed84f41e83e9dd42ddb3fc2d8ab91446 | |
parent | 6cb357e4fb8c0c200c4a715fc6efb221a79a25d8 (diff) | |
parent | f5ea7f4cc190dcb399bb19615ac8f48e19b9fa3d (diff) |
This commit was manufactured by cvs2svn to create branch
'FREESIDE_1_4_BRANCH'.
-rw-r--r-- | httemplate/docs/upgrade-1.4.2.html | 15 | ||||
-rw-r--r-- | install/debian/3.0/INSTALL | 31 |
2 files changed, 46 insertions, 0 deletions
diff --git a/httemplate/docs/upgrade-1.4.2.html b/httemplate/docs/upgrade-1.4.2.html new file mode 100644 index 000000000..cf3d0de39 --- /dev/null +++ b/httemplate/docs/upgrade-1.4.2.html @@ -0,0 +1,15 @@ +<head> + <title>Upgrading to 1.4.2</title> +</head> +<body> +<h1>Upgrading to 1.4.2 from 1.4.1</h1> +<ul> + <li>If migrating from less than 1.4.1, see these <a href="upgrade9.html">instructions</a> first. + <li>Back up your data and current Freeside installation. + <li>Install <a href="http://search.cpan.org/search?dist=Locale-SubCountry">Locale::SubCountry</a> + <li>Run <code>make aspdocs</code> or <code>make masondocs</code>. + <li>Copy <code>aspdocs/</code> or <code>masondocs/</code> to your web server's document space. + <li>Run <code>make install-perl-modules</code>. + <li>The signup server and password server are deprecated in 1.4.2. Their functionality has been incorperated into the self-service server. Edit or reinstall your init script appropriately, and set the "signup_server-default_agentnum" and "signup_server-default_refnum" configuration options appropriately. The FS::SignupClient interface is still available as a compatibility wrapper. You should be able to continue to use your current signup.cgi. + <li>Restart Apache and freeside-queued. +</body> diff --git a/install/debian/3.0/INSTALL b/install/debian/3.0/INSTALL new file mode 100644 index 000000000..ad3ad4f2b --- /dev/null +++ b/install/debian/3.0/INSTALL @@ -0,0 +1,31 @@ +#!/bin/sh + +echo "deb http://cleanwhisker.420.am/~ivan/freeside-woody/ ./" >>/etc/apt/sources.list + +apt-get update +apt-get install screen zsh libapache-mod-ssl libapache-mod-perl rsync \ + postgresql cvs fsh \ + liburi-perl libhtml-tagset-perl libnet-perl liblocale-codes-perl \ + libnet-whois-perl libwww-perl libbusiness-creditcard-perl \ + libmailtools-perl libtimedate-perl libdate-manip-perl \ + libfile-counterfile-perl libfreezethaw-perl libstring-approx-perl \ + libtext-template-perl libdbi-perl libdbd-pg-perl \ + libdbix-datasource-perl libdbix-dbschema-perl libnet-ssh-perl \ + libstring-shellquote-perl libnet-scp-perl libapache-asp-perl \ + libtie-ixhash-perl libtime-duration-perl \ + libhtml-widgets-selectlayers-perl libstorable-perl \ + libapache-dbi-perl libdbd-mysql-perl + +useradd freeside +su postgres -c "createuser -P freeside" + +su freeside -c "createdb freeside" + +#? +cd ../.. +make install-perl-modules +make create-config +freeside-adduser -c -h /usr/local/etc/freeside/htpasswd ivan +su freeside -c 'freeside-setup ivan' +su freeside -c '/home/ivan/freeside/bin/populate-msgcat ivan' +make deploy |