summaryrefslogtreecommitdiff
path: root/server/core/Automating.php
diff options
context:
space:
mode:
Diffstat (limited to 'server/core/Automating.php')
-rwxr-xr-xserver/core/Automating.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/server/core/Automating.php b/server/core/Automating.php
index 69a2773..4e212e7 100755
--- a/server/core/Automating.php
+++ b/server/core/Automating.php
@@ -14,6 +14,7 @@ include("CoreInterface.php");
include("Image.php");
include("Network.php");
include("Compute.php");
+include("NetworkLayer3");
class automating implements Core{
@@ -22,7 +23,7 @@ class automating implements Core{
protected $appImage;
protected $appNetwork;
protected $appIdentity;
- protected $appFloatingIp;
+ protected $appNetworkLayer3;
protected $app;
/**
@@ -40,7 +41,7 @@ class automating implements Core{
$this->appImage = $appImage;
$this->appNetwork = $appNetwork;
$this->appIdentity = $appIdentity;
- $this->appFloatingIp = $appFloatingIp;
+ $this->appNetworkLayer3 = $appNetworkLayer3;
$this->app = $app;
}