Puppet Class: profile::opensearch::plugin_repo

Defined in:
modules/profile/manifests/opensearch/plugin_repo.pp

Overview

SPDX-License-Identifier: Apache-2.0 Provisions a plugin repository for OpenSearch project related plugins



3
4
5
6
7
8
9
10
# File 'modules/profile/manifests/opensearch/plugin_repo.pp', line 3

class profile::opensearch::plugin_repo {
    file { '/srv/opensearch':
      ensure => 'directory',
      owner  => 'root',
      group  => 'root',
      mode   => '0755'
    }
}