summaryrefslogtreecommitdiffstats
path: root/inc/trigger.inc.php
diff options
context:
space:
mode:
Diffstat (limited to 'inc/trigger.inc.php')
-rw-r--r--inc/trigger.inc.php7
1 files changed, 5 insertions, 2 deletions
diff --git a/inc/trigger.inc.php b/inc/trigger.inc.php
index ace55bf6..fcd1b3c0 100644
--- a/inc/trigger.inc.php
+++ b/inc/trigger.inc.php
@@ -112,11 +112,14 @@ class Trigger
/**
* Mount the VM store into the server.
*
+ * @param array $vmstore VM Store configuration to use. If false, read from properties
* @return array task status of mount procedure, or false on error
*/
- public static function mount()
+ public static function mount($vmstore = false)
{
- $vmstore = Property::getVmStoreConfig();
+ if ($vmstore === false) {
+ $vmstore = Property::getVmStoreConfig();
+ }
if (!is_array($vmstore))
return false;
if (isset($vmstore['storetype'])) {