summaryrefslogtreecommitdiffstats
path: root/common/puppet-opnfv/manifests/odl_docker.pp
diff options
context:
space:
mode:
authorDaniel Smith <daniel.smith@ericsson.com>2015-08-25 11:25:32 -0400
committerDaniel Smith <daniel.smith@ericsson.com>2015-08-25 11:26:19 -0400
commitdd8ca32f84388f1bef6100459161855eee0509e9 (patch)
treebc5cb6219781018cea6703b3b97186ea5d475419 /common/puppet-opnfv/manifests/odl_docker.pp
parent7957a97c3476f3e2f9c29d22c91d7c117e1df38c (diff)
Removed ODL_DOCKER implementation (DEPRECATED FOR PLUGIN ARCH IN FUEL 6.1/SR1 OF ARNO)
Change-Id: I8643d268c5d5e3395725667deb50b5f9df7c3f09 JIRA:0 Signed-off-by: Daniel Smith <daniel.smith@ericsson.com>
Diffstat (limited to 'common/puppet-opnfv/manifests/odl_docker.pp')
-rw-r--r--common/puppet-opnfv/manifests/odl_docker.pp50
1 files changed, 0 insertions, 50 deletions
diff --git a/common/puppet-opnfv/manifests/odl_docker.pp b/common/puppet-opnfv/manifests/odl_docker.pp
deleted file mode 100644
index fdbbe67..0000000
--- a/common/puppet-opnfv/manifests/odl_docker.pp
+++ /dev/null
@@ -1,50 +0,0 @@
-##############################################################################
-# Copyright (c) 2015 Ericsson AB and others.
-# daniel.smith@ericsson.com
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Apache License, Version 2.0
-# which accompanies this distribution, and is available at
-# http://www.apache.org/licenses/LICENSE-2.0
-##############################################################################
-
-class opnfv::odl_docker
-{
- case $::fuel_settings['role'] {
- /controller/: {
-
- file { "/opt":
- ensure => "directory",
- }
-
- file { "/opt/opnfv":
- ensure => "directory",
- owner => "root",
- group => "root",
- mode => 777,
- }
-
- file { "/opt/opnfv/odl":
- ensure => "directory",
- }
-
- file { "/opt/opnfv/odl/odl_docker_image.tar":
- ensure => present,
- source => "/etc/puppet/modules/opnfv/odl_docker/odl_docker_image.tar",
- mode => 750,
- }
-
- file { "/opt/opnfv/odl/docker-latest":
- ensure => present,
- source => "/etc/puppet/modules/opnfv/odl_docker/docker-latest",
- mode => 750,
- }
-
- file { "/opt/opnfv/odl/start_odl_container.sh":
- ensure => present,
- source => "/etc/puppet/modules/opnfv/scripts/start_odl_container.sh",
- mode => 750,
- }
- }
- }
-}
-