Puppet Plan: cd4peadm::license_check

Defined in:
plans/license_check.pp

Summary

Checks whether the user has supplied a license and warns if not

Overview



4
5
6
7
8
9
10
11
# File 'plans/license_check.pp', line 4

plan cd4peadm::license_check() {
  if !file::exists(cd4peadm::license_path()) {
    # TODO Update this with instructions about how to install the license once we have decided what
    # the workflow for updating a license looks like, i.e. which plans they should run after supplying
    # the file.
    out::message("No license file found at ${cd4peadm::license_path()}. Some features will be unavailable.")
  }
}