Magellan Linux

Diff of /alx-src/branches/alx-web-070/mageupgrade.php

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

alx-src/branches/alx-web-050/mageupgrade.php revision 1608 by niro, Thu Dec 2 22:13:04 2010 UTC alx-src/branches/alx-web-060/mageupgrade.php revision 2017 by niro, Mon May 9 16:31:38 2011 UTC
# Line 1  Line 1 
1  <?  <?
2   include('include/dbconn.php');   include('include/dbconn.php');
3   include('include/basesql.php');   include('include/basesql.php');
4    
5   echo '<table width=100% height=100% style="border:solid black 1px; background-color:#d5e5ff"><tr><td valign=middle align=center>';   echo '<table width=100% height=100% style="border:solid black 1px; background-color:#d5e5ff"><tr><td valign=middle align=center>';
6  ?>  ?>
7   <style type="text/css">   <style type="text/css">
8   div.left { margin-left:20%; }   div.left { margin-left:20%; }
9   </style>   </style>
10  <?  <?
11   function editvar($var, $value, $file)   function editvar($var, $value, $file)
12   {   {
13   global $ip;   global $ip;
14   global $sshcmd;   global $sshcmd;
15    
16   // sed cmd: ssh -l root 10.11.12.13 'sed -i -e "s|^\(VAR=\).*|\1\"VALUE\"| FILE'   // sed cmd: ssh -l root 10.11.12.13 'sed -i -e "s|^\(VAR=\).*|\1\"VALUE\"| FILE'
17   $str = $sshcmd.' '.$ip.' \'sed -i -e "s|^\\('.$var.'=\\).*|\\1\\"'.$value.'\\"|" '.$file.'\'';   $str = $sshcmd.' '.$ip.' \'sed -i -e "s|^\\('.$var.'=\\).*|\\1\\"'.$value.'\\"|" '.$file.'\'';
18   //echo $str.'<br>';   //echo $str.'<br>';
19   system($str);   system($str);
20   }   }
21    
22   $pubkey = mysql_query('select public_key from ssh_auth_clients where serial='.$client.'');   $pubkey = mysql_query('select public_key from ssh_auth_clients where serial='.$client.'');
23   while ($row = mysql_fetch_row ($pubkey))   while ($row = mysql_fetch_row ($pubkey))
24   {   {
25   # schreiben der .ssh/known_hosts file mit dem public rsa key des client,   # schreiben der .ssh/known_hosts file mit dem public rsa key des client,
26   # um die "yes" abfrage zu vermeiden   # um die "yes" abfrage zu vermeiden
27   $hostfile = fopen ($home."/.ssh/known_hosts","w");   $hostfile = fopen ($home."/.ssh/known_hosts","w");
28   fwrite($hostfile,$ip." ".$row[0],strlen($row[0])+strlen($ip)+1);   fwrite($hostfile,$ip." ".$row[0],strlen($row[0])+strlen($ip)+1);
29   fclose($hostfile);   fclose($hostfile);
30    
31   # reboot des clients   # reboot des clients
32   passthru($pingcmd.' '.$ip.' &> /dev/null && exit 0 || exit 1',$retval);   passthru($pingcmd.' '.$ip.' &> /dev/null && exit 0 || exit 1',$retval);
33   if($retval==0)   if($retval==0)
34   {   {
35   if($op=="calc")   if($op=="calc")
36   {   {
37   echo '<img src="pics/online.gif" align=top> '.strtoupper('Fetching list of packages to upgrade on client #'.$client.' ('.$ip.')...<br>');   echo '<img src="pics/online.gif" align=top> '.strtoupper('Fetching list of packages to upgrade on client #'.$client.' ('.$ip.')...<br>');
38   exec($sshcmd.' '.$ip.' /sbin/mageupgrade --calc-bash',$out,$err);   exec($sshcmd.' '.$ip.' /sbin/mageupgrade --calc-bash',$out,$err);
39   echo '<pre>';   echo '<pre>';
40   echo '<table border="0">';   echo '<table border="0">';
41   if (array_key_exists("0", $out))   if (array_key_exists("0", $out))
42   {   {
43   foreach( $out as $i)   foreach( $out as $i)
44   {   {
45   $item=explode(",",$i);   $item=explode(",",$i);
46   $pcat=$item[0];   $pcat=$item[0];
47   $pname=$item[1];   $pname=$item[1];
48   $opver=$item[2];   $opver=$item[2];
49   $npver=$item[3];   $npver=$item[3];
50    
51   echo '<tr><td>';   echo '<tr><td>';
52   echo '<font color=green>'.$pcat.'/'.$pname.'</font>';   echo '<font color=green>'.$pcat.'/'.$pname.'</font>';
53   echo '<td>';   echo '<td>';
54   echo '<font color=blue> [ '.$opver.' -> '.$npver.' ] </font>';   echo '<font color=blue> [ '.$opver.' -> '.$npver.' ] </font>';
55   echo '</td>';   echo '</td>';
56   echo '</td></tr>';   echo '</td></tr>';
57   }   }
58   }   }
59   else echo 'No updates for client '.$client.' available.';   else echo 'No updates for client '.$client.' available.';
60   echo '</table>';   echo '</table>';
61   echo '</pre>';   echo '</pre>';
62   }   }
63   elseif($op=="update")   elseif($op=="update")
64   {   {
65   echo '<img src="pics/online.gif" align=top> '.strtoupper('Fetching new mage database for client #'.$client.' ('.$ip.')...<br>');   echo '<img src="pics/online.gif" align=top> '.strtoupper('Fetching new mage database for client #'.$client.' ('.$ip.')...<br>');
66   echo '<br>';   echo '<br>';
67   echo '<pre><div align=left class=left>';   echo '<pre><div align=left class=left>';
68   // hotfix copy a fixed mage.rc   // hotfix copy a fixed mage.rc
69   system('scp /var/www/localhost/htdocs/alx/he/mage.rc root@'.$ip.':/etc/mage.rc');   system('scp '.$magerc.' root@'.$ip.':/etc/mage.rc');
70   // hotfix2 and a config.rc   // hotfix2 and a config.rc
71   system('scp /var/www/localhost/htdocs/alx/he/config.rc root@'.$ip.':/etc/alxconfig-ng/config.rc');   system('scp '.$configrc.' root@'.$ip.':/etc/alxconfig-ng/config.rc');
72   editvar("VERBOSE","off","/etc/mage.rc");   editvar("VERBOSE","off","/etc/mage.rc");
73    
74   // update rsync server location   // update rsync server location
75   $rsync = sqlfirst('select client_locations.rsync from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'rsync');   $rsync = sqlfirst('select client_locations.rsync from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'rsync');
76   echo $rsync;   echo $rsync;
77   editvar("MAGE_RSYNC",$rsync,"/etc/alxconfig-ng/config.rc");   editvar("MAGE_RSYNC",$rsync,"/etc/alxconfig-ng/config.rc");
78   editvar("RSYNC",$rsync,"/etc/mage.rc");   editvar("RSYNC",$rsync,"/etc/mage.rc");
79    
80   system($sshcmd.' '.$ip.' "NOCOLORS=true /sbin/mage update"');   // update repository server location
81   echo '</div></pre>';   $repository = sqlfirst('select client_locations.repository from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'repository');
82   echo '<script language="JavaScript">alert(\'Database-update successfully completed on client #'.$client.' .\')</script>';   editvar("MAGE_MIRRORS",$repository,"/etc/alxconfig-ng/config.rc");
83   }   editvar("MIRRORS",$repository,"/etc/mage.rc");
84   elseif($op=="upgrade")  
85   {   // update samba update host
86   echo '<img src="pics/online.gif" align=top> '.strtoupper('Running update-alx on client #'.$client.' ('.$ip.')...<br>');   $updateserver = sqlfirst('select client_locations.updateserver from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'updateserver');
87   echo '<br>';   editvar("SMB_UPDATE_HOST",$updateserver,"/etc/alxconfig-ng/config.rc");
88   echo '<pre><div align=left class=left>';  
89   #echo 'forcing verbose=off <br>';   // update samba update user
90   // hotfix copy a fixed mage.rc   $smbusername = sqlfirst('select client_locations.username from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'username');
91   system('scp /var/www/localhost/htdocs/alx/he/mage.rc root@'.$ip.':/etc/mage.rc');   editvar("SMB_UPDATE_USER",$smbusername,"/etc/alxconfig-ng/config.rc");
92   // hotfix2 and a config.rc  
93   system('scp /var/www/localhost/htdocs/alx/he/config.rc root@'.$ip.':/etc/alxconfig-ng/config.rc');   // update samba update password
94   editvar("VERBOSE","off","/etc/mage.rc");   $smbpassword = sqlfirst('select client_locations.password from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'password');
95     editvar("SMB_UPDATE_PASS",$smbpassword,"/etc/alxconfig-ng/config.rc");
96   // update rsync server location   system($sshcmd.' '.$ip.' "NOCOLORS=true /sbin/mage update"');
97   $rsync = sqlfirst('select client_locations.rsync from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'rsync');  
98   editvar("MAGE_RSYNC",$rsync,"/etc/alxconfig-ng/config.rc");   echo '</div></pre>';
99   editvar("RSYNC",$rsync,"/etc/mage.rc");   echo '<script language="JavaScript">alert(\'Database-update successfully completed on client #'.$client.' .\')</script>';
100     }
101   // update repository server location   elseif($op=="upgrade")
102   $repository = sqlfirst('select client_locations.repository from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'repository');   {
103   editvar("MAGE_MIRRORS",$repository,"/etc/alxconfig-ng/config.rc");   echo '<img src="pics/online.gif" align=top> '.strtoupper('Running update-alx on client #'.$client.' ('.$ip.')...<br>');
104   editvar("MIRRORS",$repository,"/etc/mage.rc");   echo '<br>';
105     echo '<pre><div align=left class=left>';
106   // update samba update host   #echo 'forcing verbose=off <br>';
107   $updateserver = sqlfirst('select client_locations.updateserver from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'updateserver');   // hotfix copy a fixed mage.rc
108   editvar("SMB_UPDATE_HOST",$updateserver,"/etc/alxconfig-ng/config.rc");   system('scp '.$magerc.' root@'.$ip.':/etc/mage.rc');
109     // hotfix2 and a config.rc
110   // update samba update user   system('scp '.$configrc.' root@'.$ip.':/etc/alxconfig-ng/config.rc');
111   $smbusername = sqlfirst('select client_locations.username from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'username');   editvar("VERBOSE","off","/etc/mage.rc");
112   editvar("SMB_UPDATE_USER",$smbusername,"/etc/alxconfig-ng/config.rc");  
113     // update rsync server location
114   // update samba update password   $rsync = sqlfirst('select client_locations.rsync from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'rsync');
115   $smbpassword = sqlfirst('select client_locations.password from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'password');   editvar("MAGE_RSYNC",$rsync,"/etc/alxconfig-ng/config.rc");
116   editvar("SMB_UPDATE_PASS",$smbpassword,"/etc/alxconfig-ng/config.rc");   editvar("RSYNC",$rsync,"/etc/mage.rc");
117    
118     // update repository server location
119   # check if /usr/sbin/update-alx exists, if not update mage-alx and alxconfig-alx first   $repository = sqlfirst('select client_locations.repository from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'repository');
120   exec($sshcmd.' '.$ip.' "[ -x /usr/sbin/update-alx ] && exit 0 || exit 1"',$outarr,$err);   editvar("MAGE_MIRRORS",$repository,"/etc/alxconfig-ng/config.rc");
121   if($err!=0)   editvar("MIRRORS",$repository,"/etc/mage.rc");
122   {  
123   echo '"/usr/sbin/update-alx" missing on client "'.$client.'". Updating mage-alx and alxconfig-ng-alx first ...<br>';   // update samba update host
124   system($sshcmd.' '.$ip.' "NOCOLORS=true /sbin/mage install mage-alx"');   $updateserver = sqlfirst('select client_locations.updateserver from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'updateserver');
125   system($sshcmd.' '.$ip.' "NOCOLORS=true /sbin/mage install alxconfig-ng-alx"');   editvar("SMB_UPDATE_HOST",$updateserver,"/etc/alxconfig-ng/config.rc");
126   }  
127   //system($sshcmd.' '.$ip.' "NOCOLORS=true /usr/sbin/update-alx"');   // update samba update user
128   exec($sshcmd.' '.$ip.' "NOCOLORS=true /usr/sbin/update-alx && exit 0 || exit 1"',$outarr,$err);   $smbusername = sqlfirst('select client_locations.username from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'username');
129   echo '</div></pre>';   editvar("SMB_UPDATE_USER",$smbusername,"/etc/alxconfig-ng/config.rc");
130   if ($err!=0) echo '<script language="JavaScript">alert(\'Upgrade *failed* on client #'.$client.' .\')</script>';  
131   else echo '<script language="JavaScript">alert(\'Upgrade successfully installed on client #'.$client.' .\')</script>';   // update samba update password
132   }   $smbpassword = sqlfirst('select client_locations.password from client_serials inner join client_locations on client_locations.location=client_serials.location and client_serials.serial='.$client, 'password');
133   else echo 'unkown operation';   editvar("SMB_UPDATE_PASS",$smbpassword,"/etc/alxconfig-ng/config.rc");
134   }  
135    
136   else echo '<img src="pics/offline.gif" align=top> '.strtoupper('Client not online, try again later...<br>');   # check if /usr/sbin/update-alx exists, if not update mage-alx and alxconfig-alx first
137   }   exec($sshcmd.' '.$ip.' "[ -x /usr/sbin/update-alx ] && exit 0 || exit 1"',$outarr,$err);
138   echo '</td></tr></table>';   if($err!=0)
139  ?>   {
140     echo '"/usr/sbin/update-alx" missing on client "'.$client.'". Updating mage-alx and alxconfig-ng-alx first ...<br>';
141     system($sshcmd.' '.$ip.' "NOCOLORS=true /sbin/mage install mage-alx"');
142     system($sshcmd.' '.$ip.' "NOCOLORS=true /sbin/mage install alxconfig-ng-alx"');
143     }
144     //system($sshcmd.' '.$ip.' "NOCOLORS=true /usr/sbin/update-alx"');
145     exec($sshcmd.' '.$ip.' "NOCOLORS=true /usr/sbin/update-alx && exit 0 || exit 1"',$outarr,$err);
146     echo '</div></pre>';
147     if ($err!=0) echo '<script language="JavaScript">alert(\'Upgrade *failed* on client #'.$client.' .\')</script>';
148     else echo '<script language="JavaScript">alert(\'Upgrade successfully installed on client #'.$client.' .\')</script>';
149     }
150     else echo 'unkown operation';
151     }
152    
153     else echo '<img src="pics/offline.gif" align=top> '.strtoupper('Client not online, try again later...<br>');
154     }
155     echo '</td></tr></table>';
156    ?>

Legend:
Removed from v.1608  
changed lines
  Added in v.2017