diff options
author | Daniel Stefan Haischt <dsh@pfsense.org> | 2007-01-05 09:08:28 +0000 |
---|---|---|
committer | Daniel Stefan Haischt <dsh@pfsense.org> | 2007-01-05 09:08:28 +0000 |
commit | 319b6c7854114c21af14a19d718f8c96ebb8b4ec (patch) | |
tree | 8d67bb20697676f75a23afeea5075936280f8fb5 /packages | |
parent | 0186d996c21f1e24d40194fcb48bf12b89d579fd (diff) | |
download | pfsense-packages-319b6c7854114c21af14a19d718f8c96ebb8b4ec.tar.gz pfsense-packages-319b6c7854114c21af14a19d718f8c96ebb8b4ec.tar.bz2 pfsense-packages-319b6c7854114c21af14a19d718f8c96ebb8b4ec.zip |
* fix: use strpos instead of strcmp in disks_check_mount_fullname()
* fix: format function on disks_manage_init.php
Diffstat (limited to 'packages')
-rw-r--r-- | packages/freenas/pkg/freenas_disks.inc | 3 | ||||
-rw-r--r-- | packages/freenas/pkg/freenas_guiconfig.inc | 18 | ||||
-rw-r--r-- | packages/freenas/www/disks_manage_init.php | 23 |
3 files changed, 32 insertions, 12 deletions
diff --git a/packages/freenas/pkg/freenas_disks.inc b/packages/freenas/pkg/freenas_disks.inc index 8ac8eb72..3ccc4f24 100644 --- a/packages/freenas/pkg/freenas_disks.inc +++ b/packages/freenas/pkg/freenas_disks.inc @@ -42,6 +42,7 @@ /* include all configuration functions */ require_once("functions.inc"); +require_once("freenas_functions.inc"); $freenas_config =& $config['installedpackages']['freenas']['config'][0]; @@ -295,7 +296,7 @@ function disks_check_mount_fullname($fullname) { //print_r($detmount); foreach ($detmount as $detmountk => $detmountv) { - if (strcmp($detmountv['fullname'],$fullname) == 0) { + if (strpos($detmountv['fullname'],$fullname) !== false) { $status=1; break; } diff --git a/packages/freenas/pkg/freenas_guiconfig.inc b/packages/freenas/pkg/freenas_guiconfig.inc index 18f936a4..c049659a 100644 --- a/packages/freenas/pkg/freenas_guiconfig.inc +++ b/packages/freenas/pkg/freenas_guiconfig.inc @@ -40,6 +40,24 @@ $d_upnpconfdirty_path = $g['varrun_path'] . "/upnp.conf.dirty"; $freenas_config =& $config['installedpackages']['freenas']['config'][0]; +function print_error_box_np($msg) { + global $g; + + echo "<table border=\"0\" cellspacing=\"0\" cellpadding=\"4\" width=\"100%\">\n"; + echo "<tr><td bgcolor=\"#A12A2A\" width=\"36\" align=\"center\" valign=\"top\"><img src=\"/themes/{$g['theme']}/images/icons/icon_error.gif\" width=\"28\" height=\"32\"></td>\n"; + echo "<td bgcolor=\"#FFD9D1\" style=\"padding-left: 8px; padding-top: 6px\">"; + echo "<span class=\"errmsg\">"; + echo $msg; + echo "</span>"; + echo "</td></tr></table>"; +} + +function print_error_box($msg) { + echo "<p>"; + print_error_box_np($msg); + echo "</p>"; +} + function mount_sort() { global $g, $freenas_config; diff --git a/packages/freenas/www/disks_manage_init.php b/packages/freenas/www/disks_manage_init.php index 7267cec3..278efdd5 100644 --- a/packages/freenas/www/disks_manage_init.php +++ b/packages/freenas/www/disks_manage_init.php @@ -226,6 +226,7 @@ function disk_change() { <?php if ($input_errors) print_input_errors($input_errors); ?> <?php if ($savemsg) print_info_box($savemsg); ?> +<?php if($errormsg) print_error_box($errormsg);?> <div id="inputerrors"></div> <table width="100%" border="0" cellspacing="0" cellpadding="0"> <tr> @@ -250,7 +251,7 @@ function disk_change() { <td width="78%" class="vtable"> <select name="disk" class="formselect" id="disk" onchange="disk_change();"> <?php foreach ($all_disk as $diskv): ?> - <option value="<?=$diskv['fullname'];?>"<?php if ($diskv['name'] == $disk) echo "selected";?>> + <option value="<?=$diskv['fullname'];?>" <?php if ($diskv['name'] == $disk) echo "selected=\selected\"";?>> <?php echo htmlspecialchars($diskv['name'] . ": " .$diskv['size'] . " (" . $diskv['desc'] . ")");?> <?php endforeach; ?> </option> @@ -291,7 +292,7 @@ function disk_change() { /* Erase MBR if not checked*/ if (!$notinitmbr) { echo "Erasing MBR\n"; - system("dd if=/dev/zero of=/dev/" . escapeshellarg($disk) . " bs=32k count=640"); + system("dd if=/dev/zero of=" . escapeshellarg($disk) . " bs=32k count=640"); } else { echo "Keeping the MBR and all partitions\n"; @@ -305,13 +306,13 @@ function disk_change() { system("/sbin/fdisk -I -b /boot/mbr " . escapeshellarg($disk)); /* Initialise the partition (optional) */ echo "Initializing parition:\n"; - system("/bin/dd if=/dev/zero of=/dev/" . escapeshellarg($disk) . "s1 bs=32k count=16"); + system("/bin/dd if=/dev/zero of=" . escapeshellarg($disk) . "s1 bs=32k count=16"); /* Create s1 label */ echo "Creating BSD label:\n"; system("/sbin/bsdlabel -w " . escapeshellarg($disk) . "s1 auto"); // Create filesystem echo "Creating Filesystem:\n"; - system("/sbin/newfs -U /dev/" . escapeshellarg($disk) . "s1"); + system("/sbin/newfs -U " . escapeshellarg($disk) . "s1"); echo "Done!\n"; break; case "ufs_no_su": @@ -320,13 +321,13 @@ function disk_change() { system("/sbin/fdisk -I -b /boot/mbr " . escapeshellarg($disk)); /* Initialise the partition (optional) */ echo "Initializing parition:\n"; - system("/bin/dd if=/dev/zero of=/dev/" . escapeshellarg($disk) . "s1 bs=32k count=16"); + system("/bin/dd if=/dev/zero of=" . escapeshellarg($disk) . "s1 bs=32k count=16"); /* Create s1 label */ echo "Creating BSD label:\n"; system("/sbin/bsdlabel -w " . escapeshellarg($disk) . "s1 auto"); // Create filesystem echo "Creating Filesystem:\n"; - system("/sbin/newfs -m 0 /dev/" . escapeshellarg($disk) . "s1"); + system("/sbin/newfs -m 0 " . escapeshellarg($disk) . "s1"); echo "Done!\n"; break; case "ufsgpt": @@ -338,7 +339,7 @@ function disk_change() { system("/sbin/gpt add -t ufs " . escapeshellarg($disk)); // Create filesystem echo "Creating Filesystem with Soft Updates:\n"; - system("/sbin/newfs -U /dev/" . escapeshellarg($disk) . "p1"); + system("/sbin/newfs -U " . escapeshellarg($disk) . "p1"); echo "Done!\n"; break; case "ufsgpt_no_su": @@ -350,14 +351,14 @@ function disk_change() { system("/sbin/gpt add -t ufs " . escapeshellarg($disk)); // Create filesystem echo "Creating Filesystem without Soft Updates:\n"; - system("/sbin/newfs -m 0 /dev/" . escapeshellarg($disk) . "p1"); + system("/sbin/newfs -m 0 " . escapeshellarg($disk) . "p1"); echo "Done!\n"; break; case "softraid": /* Initialize disk */ system("/sbin/fdisk -I -b /boot/mbr " . escapeshellarg($disk)); /* Initialise the partition (optional) */ - system("/bin/dd if=/dev/zero of=/dev/" . escapeshellarg($disk) . "s1 bs=32k count=16"); + system("/bin/dd if=/dev/zero of=" . escapeshellarg($disk) . "s1 bs=32k count=16"); /* Delete old gmirror information */ system("/sbin/gmirror clear " . escapeshellarg($disk)); echo "Done!\n"; @@ -366,11 +367,11 @@ function disk_change() { /* Initialize disk */ system("/sbin/fdisk -I -b /boot/mbr " . escapeshellarg($disk)); /* Initialise the partition (optional) */ - system("/bin/dd if=/dev/zero of=/dev/" . escapeshellarg($disk) . "s1 bs=32k count=16"); + system("/bin/dd if=/dev/zero of=" . escapeshellarg($disk) . "s1 bs=32k count=16"); /* Create s1 label */ system("/sbin/bsdlabel -w " . escapeshellarg($disk) . "s1 auto"); // Create filesystem - system("/sbin/newfs_msdos -F 32 /dev/" . escapeshellarg($disk) . "s1"); + system("/sbin/newfs_msdos -F 32 " . escapeshellarg($disk) . "s1"); echo "Done!\n"; break; } |