[go: up one dir, main page]

Menu

[r1]: / www / sbkups.php  Maximize  Restore  History

Download this file

89 lines (73 with data), 4.1 kB

 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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<!--
VMLMAT: VM Linux Management and Archival Tool.
Copyright (c) 2007, Ronnie Michael, BMC Software Inc.
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 the BMC Software Inc. 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.
-->
<html><head><title>VMLMAT VM Linux Management and Archival Tool</title>
<link rel="stylesheet" type="text/css" href="/templates/astyle.css" title="standard"/>
</head><body>
<div id="banner"><a name="top"></a><h1><a href="index.php">VMLMAT</a></h1><h2> Linux Management System </h2>
</div>
<div id="commentcontent">
<p>&nbsp;&nbsp; next entry: <a href='index.php' target='_self'>Return</a>
<h1>Zlinux Standard Image System</h1>
<p>This process is for the System Administator Only <br />
Just makes html form files for standard images<br />
and does not create the tar file!<br />
Tarfile name should be specified without the _volyx.tar suffix.<br/>
The system will add the _volyx.tar later to the Tarfile name. <br/>
Specify Tarfile and Listing Name for ADD function.<br />
Specify Listing Name for DELETE function.<br />
For delete to work, Listing Name must be exact match. Example:</br>
CentOS_4.5.php has a return link "CentOS_4.5" which is the listing name you should use</br>
and not the main menu link which would list it without the underscores as "CentOS 4.5".</br>
</p>
<p><p>Must Fill out the info below</p><a name="comm"></a></p>
<p><a name="#comments"></a><a name="#bottom"></a><form method="post" action="submits.php"
name="form" >
<input type="hidden" name="url" value=self.location>
<input type="hidden" name="req" value="1">
<table border=0 cellspacing=0 cellpadding=0 width="65%">
<tr>
<td>Gzip Tarball Name:</td>
<td><input type="text" name="tarfile" size="40" value="backup_releasexx" ></td></tr><tr>
<td>Listing Name:</td>
<td><input type="text" name="comment" size="40" value="Distro_release_upx_xxbit" ></td></tr><tr>
</table><br>
<input type="submit" name="add" value="Add" style="border: 1px inset black;">
<input type="submit" name="cancel" value="Cancel" style="border: 1px inset black;">
<input type="submit" name="del" value="Delete" style="border: 1px inset black;">
<br><br>
<small><br><br><b>Notice:</b> Should use non white-space for backup system name and the Tarball name. </small>
</form></p>
<?
/* if they bookmark this throw them out if not already validated through auth.php */
session_start();
$user=$_SESSION['user'];
if (empty($user)){
#issue error message
$_SESSION['errmsg']="autherr";
session_write_close();
header("Location: http://".$_SERVER['HTTP_HOST']."/errmsg.php");
exit;
}
?>
</div>
</body>
</html>