You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@vcl.apache.org by jf...@apache.org on 2013/04/11 14:50:45 UTC

svn commit: r1466857 - /vcl/site/trunk/content/confluence_export/adding-new-os-module.mdtext

Author: jfthomps
Date: Thu Apr 11 12:50:45 2013
New Revision: 1466857

URL: http://svn.apache.org/r1466857
Log:
reformatted

Modified:
    vcl/site/trunk/content/confluence_export/adding-new-os-module.mdtext

Modified: vcl/site/trunk/content/confluence_export/adding-new-os-module.mdtext
URL: http://svn.apache.org/viewvc/vcl/site/trunk/content/confluence_export/adding-new-os-module.mdtext?rev=1466857&r1=1466856&r2=1466857&view=diff
==============================================================================
--- vcl/site/trunk/content/confluence_export/adding-new-os-module.mdtext (original)
+++ vcl/site/trunk/content/confluence_export/adding-new-os-module.mdtext Thu Apr 11 12:50:45 2013
@@ -1,60 +1,52 @@
 Title: Adding New OS Module
+
 This is a short guide on how to set up development environment for a OS
 Module.
 
-<a name="AddingNewOSModule-InstallVCL"></a>
-# Install VCL
+# Install VCL {#installvcl}
 
-* ...
+* Follow the install guide linked to from the [download](/downloads/download.cgi)
+page.
 
-<a name="AddingNewOSModule-SettingupanewOSModule"></a>
-# Setting up a new OS Module
+# Setting up a new OS Module {#settingupanewosmodule}
 
 * Start by creating a Module/OS/...pm file.
-** See the other OS Module for examples.
-** Set the package path in the file
+    * See the other OS Module for examples.
+    * Set the package path in the file<br>
 package VCL::Module::OS::...;
-
 * Add an entry to the module table pointing to your new module with the
 package path mentioned above.
-
 * Add an entry to the OS table pointing to the entry you add to the module
 table.
-
 * Add entries to the image and imagerevision table for a base new image,
 with image.OSid pointing to the entry you add to the OS table.
-
 * Enter the computer information for a loaded new machine into VCL and make
 sure that the management node can access this machine via SSH.
-
 * Insert the code you want to test at the
 beginning of the process() subroutine in new.pm, followed by a call to
 exit:
 
-
-    sub process {
-    my $self = shift;
-    
-    my $request_data = $self->data->get_request_data();
-    ...
-    my $imagerevision_id = $self->data->get_imagerevision_id();
+        :::PerlLexer
+        sub process {
+        my $self = shift;
     
+        my $request_data = $self->data->get_request_data();
+        ...
+        my $imagerevision_id = $self->data->get_imagerevision_id();
     
-    print "\n\n---\n\n";
+        print "\n\n---\n\n";
     
-    my $ip = $self->os->get_public_ip_address();
-    print "IP: $ip\n";
+        my $ip = $self->os->get_public_ip_address();
+        print "IP: $ip\n";
     
-    print "\n\n---\n\n";
-    exit;
-    ...
-
+        print "\n\n---\n\n";
+        exit;
+        ...
 
 * To test things over and over again, run a script which inserts entries
 into the request and reservation tables with the request state and
 laststate set to 'new'.  vcld picks up the reservation, configures
 everything as it would for a normal reservation, calls new.pm::process(),
 test code is executed, then the process exits.
-
 * Once this is set up, it should be pretty efficient to test all of the
-subroutines in OS module.
+subroutines in OS module.
\ No newline at end of file