Index: platform/hosting_platform.module
===================================================================
--- platform/hosting_platform.module	(revision 7)
+++ platform/hosting_platform.module	(working copy)
@@ -21,7 +21,7 @@ function hosting_platform_node_info() {
 function hosting_platform_hosting_tasks($type) {
   $options = array();
   if ($type == 'platform') {
-    $options['verify'] = array(
+    $options['provision verify'] = array(
       'title' => t('Verify'),
       'description' => t('Verify that the platform is correctly installed and working.'),
       'weight' => 10,
Index: task.hosting.inc
===================================================================
--- task.hosting.inc	(revision 7)
+++ task.hosting.inc	(working copy)
@@ -59,7 +59,7 @@ function drush_hosting_hosting_task() {
   $data = array_merge($task->args, $task->options);
   $data['uri'] = null; // provision commands do not need the url passed to them.
   $mode = drush_get_option('debug', FALSE) ? 'GET' : 'POST';
-  $output = drush_backend_invoke("provision " . $task->task_type, $data, $mode, TRUE, $drush_path, $hostname, $username);
+  $output = drush_backend_invoke($task->task_type, $data, $mode, TRUE, $drush_path, $hostname, $username);
 
   drush_set_context('HOSTING_DRUSH_OUTPUT', $output);
   $code = drush_get_error();
Index: migrate/hosting_migrate.module
===================================================================
--- migrate/hosting_migrate.module	(revision 7)
+++ migrate/hosting_migrate.module	(working copy)
@@ -4,7 +4,7 @@ function hosting_migrate_hosting_tasks($type, $tas
   $options = array();
 
   if ($type == 'site') {
-    $options['migrate'] = array(
+    $options['provision migrate'] = array(
       'title' => t('Migrate'),
       'description' => t('Move the site to a new platform.'),
       'weight' => 7
Index: clone/hosting_clone.module
===================================================================
--- clone/hosting_clone.module	(revision 7)
+++ clone/hosting_clone.module	(working copy)
@@ -4,7 +4,7 @@ function hosting_clone_hosting_tasks($type, $task
   $options = array();
 
   if ($type == 'site') {
-    $options['clone'] = array(
+    $options['provision clone'] = array(
       'title' => t('Clone'),
       'description' => t('Copy the site to a new platform.'),
       'weight' => 7
Index: site/hosting_site.module
===================================================================
--- site/hosting_site.module	(revision 7)
+++ site/hosting_site.module	(working copy)
@@ -25,37 +25,37 @@ function hosting_site_node_info() {
 function hosting_site_hosting_tasks($type, $task = null) {
   $options = array();
   if ($type == 'site') {
-    $options['backup'] = array(
+    $options['provision backup'] = array(
       'title' => t('Backup'),
       'description' => t('Generate a backup of this site that can be restored to at any time'),
       'weight' => 7
      );
 
-    $options['restore'] = array(
+    $options['provision restore'] = array(
       'title' => t('Restore'),
       'description' => t('Restore this site to a previous backup. A new backup will be created before this is attempted.'),
       'weight' => 7,
     );
 
-    $options['verify'] = array(
+    $options['provision verify'] = array(
       'title' => t('Verify'),
       'description' => t('Confirm that the site has been correctly installed and regenerate all configuration files to match the hosting front end.'),
       'weight' =>  9,
     );
 
-    $options['disable'] = array(
+    $options['provision disable'] = array(
       'title' =>  t('Disable'),
       'description' =>  t('Disabling this site will stop it from being accessible.
            It can be enabled again later.'),     
       'weight' =>  4,
     );     
-    $options['enable'] = array(
+    $options['provision enable'] = array(
       'title' => t('Enable'),
       'description' => t('Enabling this site will allow it to be accesible again.
            It may be disabled again if needed.'),
       'weight' =>  4,     
     );
-    $options['delete'] = array(
+    $options['provision delete'] = array(
       'title' => t('Delete'),
       'description' => t('Deleting this site will completely remove it from the hosting system,
           but will keep the last backup available. This process can not be undone.
