salt.states.beacon

Management of the Salt beacons

New in version 2015.8.0.

ps:
  beacon.present:
    - save: True
    - enable: False
    - services:
        salt-master: running
        apache2: stopped

sh:
  beacon.present: []

load:
  beacon.present:
    - averages:
        1m:
          - 0.0
          - 2.0
        5m:
          - 0.0
          - 1.5
        15m:
          - 0.1
          - 1.0
salt.states.beacon.absent(name, save=False, **kwargs)

Ensure beacon is absent.

name

The name of the beacon ensured absent.

save

True/False, if True the beacons.conf file be updated too. Default is False.

salt.states.beacon.disabled(name, **kwargs)

Disable a beacon.

name

The name of the beacon to disable.

salt.states.beacon.enabled(name, **kwargs)

Enable a beacon.

name

The name of the beacon to enable.

salt.states.beacon.present(name, save=False, **kwargs)

Ensure beacon is configured with the included beacon data.

name

The name of the beacon ensure is configured.

save

True/False, if True the beacons.conf file be updated too. Default is False.