diff --git a/www/newimageid_ez.php3 b/www/newimageid_ez.php3 index 7fb0a69c250af937ecd3e7de8b0808e0636911ce..cd7b891b0ead2cb089b2780fe46e4405bd1de24b 100644 --- a/www/newimageid_ez.php3 +++ b/www/newimageid_ez.php3 @@ -38,12 +38,12 @@ $oslist["NetBSD"] = "NetBSD"; $oslist["Other"] = "Other"; # -# Default OS strings. Needs to move someplace else! +# Default op modes. Needs to move someplace else! # $opmodes = array(); -$opmodes["NORMAL"] = "NORMAL"; $opmodes["NORMALv1"] = "NORMALv1"; $opmodes["MINIMAL"] = "MINIMAL"; +$opmodes["NORMAL"] = "NORMAL"; # # See what projects the uid can do this in. @@ -405,18 +405,22 @@ function SPITFORM($formfields, $errors) <li> otherwise, feel free to ask us! </ul> <li> Guidelines for setting OS features for your OS: + (Most images should mark all four of these.) <ol type=a> <li> Mark ping and/or ssh if they are supported. - <li> If you use one of our standard kernels, or - are based on a testbed kernel config, mark ipod. - <li> If it is based on one of our standard images or - sends its own ISUP notification, mark isup. + <li> If you use one of our standard Linux or FreeBSD + kernels, or started from our kernel configs, mark ipod. + <li> If it is based on one of our standard Linux or + FreeBSD images (or otherwise + sends its own ISUP notification), mark isup. </ol> <li> Guidelines for setting Operational Mode for your OS: + (Most images should use NORMALv1.) <ol type=a> - <li> If it is based on one of our standard images, - use the same Op. Mode as that image (should be - NORMAL or NORMALv1; select it from the + <li> If it is based on a testbed image (one of our + RedHat Linux or FreeBSD images) use the same + op_mode as that image (should be NORMALv1, + or NORMAL for old images. Select it from the <a href=\"$TBBASE/showosid_list.php3\" >OS Descriptor List</a> to find out). <li> If not, use MINIMAL. @@ -448,6 +452,11 @@ if (! $submit) { $defaults = array(); $defaults[loadpart] = "X"; $defaults[path] = "/proj/"; + $defaults[op_mode] = "NORMALv1"; + $defaults[os_feature_ping] = "checked"; + $defaults[os_feature_ssh] = "checked"; + $defaults[os_feature_ipod] = "checked"; + $defaults[os_feature_isup] = "checked"; SPITFORM($defaults, 0); PAGEFOOTER(); return; diff --git a/www/newosid_form.php3 b/www/newosid_form.php3 index f72816d1d9990019080b4f0ec1218768816ccba6..5729b633a9f8054e22200f8ccc4c0dd024ee3d7d 100644 --- a/www/newosid_form.php3 +++ b/www/newosid_form.php3 @@ -127,10 +127,10 @@ echo "<tr> echo "<tr> <td>OS Features:</td> - <td><input type=checkbox name=\"os_feature_ping\">ping   - <input type=checkbox name=\"os_feature_ssh\">ssh   - <input type=checkbox name=\"os_feature_ipod\">ipod   - <input type=checkbox name=\"os_feature_isup\">isup   + <td><input checked type=checkbox name=\"os_feature_ping\">ping   + <input checked type=checkbox name=\"os_feature_ssh\">ssh   + <input checked type=checkbox name=\"os_feature_ipod\">ipod   + <input checked type=checkbox name=\"os_feature_isup\">isup   <p> Guidelines for setting os_features for your OS: <ol> @@ -150,15 +150,19 @@ echo "<tr> echo "<tr> <td>*Operational Mode (op_mode):</td> <td><select name=op_mode> + <option selected value=NORMALv1>NORMALv1 </option> <option value=MINIMAL>MINIMAL </option> <option value=NORMAL>NORMAL </option> - <option value=NORMALv1>NORMALv1 </option> </select> <p> Guidelines for setting op_mode for your OS: <ol> - <li> If it is based on a testbed image, use the same - op_mode as that image (should be NORMAL or NORMALv1). + <li> If it is based on a testbed image (one of our + RedHat Linux or FreeBSD images) use the same + op_mode as that image (should be NORMALv1, + or NORMAL for old images. Select it from the + <a href=\"$TBBASE/showosid_list.php3\" + >OS Descriptor List</a> to find out). <li> If not, use MINIMAL. </ol> </td>