summaryrefslogtreecommitdiffstats
path: root/common/puppet-opnfv/manifests/odl_docker.pp
diff options
context:
space:
mode:
authorDaniel Smith <daniel.smith@ericsson.com>2015-08-27 11:31:54 +0000
committerGerrit Code Review <gerrit@172.30.200.206>2015-08-27 11:31:54 +0000
commitb9c506d16deb32d1d1a391962e961e5f84937143 (patch)
tree29a3782f5515ab52e6ae664a260a40d3a9356d4d /common/puppet-opnfv/manifests/odl_docker.pp
parente81470c59a70eab98426917702d592c4fc7f97e0 (diff)
parentdd8ca32f84388f1bef6100459161855eee0509e9 (diff)
Merge "Removed ODL_DOCKER implementation (DEPRECATED FOR PLUGIN ARCH IN FUEL 6.1/SR1 OF ARNO)"
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,
- }
- }
- }
-}
-