oliver
2007-08-29 098b2f065bf860045a53048c4fad45afaf8f1257
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
<?php
 
/*
Copyright (c) 2007, Till Brehm, projektfarm Gmbh
All rights reserved.
 
Redistribution and use in source and binary forms, with or without modification,
are permitted provided that the following conditions are met:
 
    * Redistributions of source code must retain the above copyright notice,
      this list of conditions and the following disclaimer.
    * Redistributions in binary form must reproduce the above copyright notice,
      this list of conditions and the following disclaimer in the documentation
      and/or other materials provided with the distribution.
    * Neither the name of ISPConfig nor the names of its contributors
      may be used to endorse or promote products derived from this software without
      specific prior written permission.
 
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
 
 
//** ISPConfig 3 installer.
 
 
//** Include the library with the basic installer functions
require_once('lib/install.lib.php');
 
//** Include the base class of the installer class
require_once('lib/installer_base.lib.php');
 
//** Installer/updater logfile
define('ISPC_LOG_FILE', '/var/log/ispconfig_install.log');
 
//** Get distribution identifier
$distname = get_distname();
 
include_once("/usr/local/ispconfig/server/lib/config.inc.php");
$conf_old = $conf;
unset($conf);
 
//** Include the distribution specific installer class library and configuration
include_once('dist/lib/'.$distname.'.lib.php');
include_once('dist/conf/'.$distname.'.conf.php');
 
//** Set the mysql login information
$conf["mysql"]["host"] = $conf_old["db_host"];
$conf["mysql"]["database"] = $conf_old["db_database"];
$conf["mysql"]["ispconfig_user"] = $conf_old["db_user"];
$conf["mysql"]["ispconfig_password"] = $conf_old["db_password"];
 
$inst = new installer();
 
echo "This application will update ISPConfig 3 on your server.\n";
 
//** TODO: all other queries, for testing I will setup everything in $conf
 
//** Initialize the MySQL server connection
include_once('lib/mysql.lib.php');
 
//** Database update is a bit brute force and should be rebuild later ;)
 
//** Ask user for mysql admin_password if empty
if( empty($conf["mysql"]["admin_password"]) ) {
 
    $conf["mysql"]["admin_password"] = $inst->free_query('MySQL root password', $conf['mysql']['admin_password']);
}
 
//** export the current database data
if( !empty($conf["mysql"]["admin_password"]) ) {
 
    system("mysqldump -h ".$conf['mysql']['host']." -u ".$conf['mysql']['admin_user']." -p".$conf['mysql']['admin_password']." -c -t --add-drop-table --all --quick ".$conf['mysql']['database']." > existing_db.sql");
}
else {
 
    system("mysqldump -h ".$conf['mysql']['host']." -u ".$conf['mysql']['admin_user']." -c -t --add-drop-table --all --quick ".$conf['mysql']['database']." > existing_db.sql");
}
 
//** Delete the old database
$inst->db = new db();
 
if( !$inst->db->query('DROP DATABASE IF EXISTS '.$conf['mysql']['database']) ) {
 
    $inst->error('Unable to drop MySQL database: '.$conf['mysql']['database'].'.');
}
 
//** Create the mysql database
$inst->configure_database();
 
//** empty all databases
$db_tables = $inst->db->getTables();
 
foreach($db_tables as $table) {
 
    $inst->db->query("TRUNCATE $table");
}
 
//** load old data back into database
if( !empty($conf["mysql"]["admin_password"]) ) {
 
    system("mysql -h ".$conf['mysql']['host']." -u ".$conf['mysql']['admin_user']." -p".$conf['mysql']['admin_password']." ".$conf['mysql']['database']." < existing_db.sql");
} else {
 
    system("mysql -h ".$conf['mysql']['host']." -u ".$conf['mysql']['admin_user']." ".$conf['mysql']['database']." < existing_db.sql");
}
 
//** Configure postfix
$inst->configure_postfix('dont-create-certs');
 
//** Configure saslauthd
swriteln('Configuring SASL');
$inst->configure_saslauthd();
 
//** Configure PAM
swriteln('Configuring PAM');
$inst->configure_pam();
 
//** Configure courier
swriteln('Configuring Courier');
$inst->configure_courier();
 
//** Configure Spamasassin
swriteln('Configuring Spamassassin');
$inst->configure_spamassassin();
 
//** Configure Amavis
swriteln('Configuring Amavisd');
$inst->configure_amavis();
 
//** Configure Getmail
swriteln('Configuring Getmail');
$inst->configure_getmail();
 
//** Configure Pureftpd
swriteln('Configuring Pureftpd');
$inst->configure_pureftpd();
 
//** Configure MyDNS
swriteln('Configuring MyDNS');
$inst->configure_mydns();
 
//** Configure Apache
swriteln('Configuring Apache');
$inst->configure_apache();
 
//** Configure ISPConfig
swriteln('Installing ISPConfig');
$inst->install_ispconfig();
 
//** Configure ISPConfig
swriteln('Installing Crontab');
$inst->install_crontab();
 
//** Restart services:
swriteln('Restarting services ...');
system("/etc/init.d/mysql restart");
system("/etc/init.d/postfix restart");
system("/etc/init.d/saslauthd restart");
system("/etc/init.d/amavis restart");
system("/etc/init.d/clamav-daemon restart");
system("/etc/init.d/courier-authdaemon restart");
system("/etc/init.d/courier-imap restart");
system("/etc/init.d/courier-imap-ssl restart");
system("/etc/init.d/courier-pop restart");
system("/etc/init.d/courier-pop-ssl restart");
system("/etc/init.d/apache2 restart");
system("/etc/init.d/pure-ftpd-mysql restart");
system("/etc/init.d/mydns restart");
 
echo "Update finished.\n";
 
?>