Skip to content

Commit 0bc53e0

Browse files
fix caps from settings to match example.
1 parent 299216b commit 0bc53e0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

jamf2snipe

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,13 +107,13 @@ logging.info("Great, we found a settings file. Let's get started by parsing all
107107
# This is the address, cname, or FQDN for your JamfPro instance.
108108
jamfpro_base = config['jamf']['url']
109109
logging.info("The configured JAMFPro base url is: {}".format(jamfpro_base))
110-
jamf_apiKey = config['jamf']['apiKey']
111-
logging.debug("The API key you provided to access the Jamf is: {}".format(jamf_apiKey))
110+
jamf_apiKey = config['jamf']['apikey']
111+
logging.debug("The API key you provided for Jamf is: {}".format(jamf_apiKey))
112112

113113
# This is the address, cname, or FQDN for your snipe-it instance.
114114
snipe_base = config['snipe-it']['url']
115115
logging.info("The configured Snipe-IT base url is: {}".format(snipe_base))
116-
snipe_apiKey = config['snipe-it']['apiKey']
116+
snipe_apiKey = config['snipe-it']['apikey']
117117
logging.debug("The API key you provided for Snipe is: {}".format(snipe_apiKey))
118118
defaultStatus = config['snipe-it']['defaultStatus']
119119
logging.info("The default status we'll be setting updated computer to is: {} (I sure hope this is a number or something is probably wrong)".format(defaultStatus))

0 commit comments

Comments
 (0)