Overview

This manages the oracle listener process.

It makes sure the Oracle SQL*Net listener is running.

ora_listener {'SID':
  ensure  => 'running',
  require => Exec['db_install_instance'],
}

The name of the resource MUST be the sid for which you want to start the listener, unless instance_name is specified.

Experience the Power of Puppet for Oracle

If you want to play and experiment with Puppet and Oracle, please take a look at our playgrounds. At our playgrounds, we provide you with a pre-installed environment, where you experiment fast and easy.

Attributes

Attribute Name Short Description
ensure Whether a listener should be running.
instance_name The database instance name.
name The sid of the listener to run.
provider resource.

ensure

Whether a listener should be running.

This is a required property without any defaults.

Valid values are stopped (also called false), running (also called true).

Back to overview of ora_listener

instance_name

The database instance name.

The instance_name parameter MUST be the sid for which you want to start the listener.

Back to overview of ora_listener

name

The sid of the listener to run.

Back to overview of ora_listener

provider

The specific backend to use for this ora_listener resource. You will seldom need to specify this — Puppet will usually discover the appropriate provider for your platform.Available providers are:

listener

Back to overview of ora_listener