class Packerman::Dsl::Provisioners::Shell

Public Class Methods

optional_keys() click to toggle source
# File lib/packerman/dsl/provisioners/shell.rb, line 14
def optional_keys
  [
    :binary,
    :environment_vars,
    :execute_command,
    :inline_shebang,
    :remote_path,
    :start_retry_timeout
  ]
end
require_keys() click to toggle source
# File lib/packerman/dsl/provisioners/shell.rb, line 5
def require_keys
  [
    # Exactly one of the following is required
    :inline,
    :script,
    :scripts
  ]
end