Honestpuck / scriptorium

A utility for managing the scripts in Jamf Pro
MIT License
52 stars 6 forks source link

What is the format for the AutoPkg plist? #3

Closed damacguy closed 3 years ago

damacguy commented 3 years ago

I don't use AutoPkg and so don' have a AutoPkg pref files with the JSS location, user, or password information.

I've looked at it before, but it's just not applicable to my environment. I reinstalled it and the com.github.autopkg.stage.plist file isn't automatically created and don't see where through AutoPkg's CLI to set this info.

Honestpuck commented 3 years ago

Good question. This is the minimum required for scriptorium.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>API_PASSWORD</key>
    <string>password</string>
    <key>API_USERNAME</key>
    <string>account</string>
    <key>JSS_URL</key>
    <string>https://example.jamfcloud.com</string>
</dict>
</plist>