module Jamf::Client::JamfBinary
Module for working with the Jamf
Binary on a managed client mac This should be included into Jamf::Client
Constants
- JAMF_BINARY
The path to the jamf binary
- JAMF_VERBOSE_OPT
the option that makes the jamf binary verbose
- ROOTLESS_JAMF_COMMANDS
These jamf commands don’t need root privs (most do)
Public Class Methods
included(includer)
click to toggle source
when this module is included, also extend our Class Methods
# File lib/jamf/client/jamf_binary.rb 52 def self.included(includer) 53 Jamf.load_msg "--> #{includer} is including Jamf::Client::JamfBinary" 54 includer.extend(ClassMethods) 55 end