Skip to content

Commit d65b57d

Browse files
committed
Add JamfUploader processor conventions
1 parent e5c0b1e commit d65b57d

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. This projec
77
### Added
88
- `BrewCaskInfoProvider` has been added to the list of deprecated AutoPkg processors.
99
- More output when `check-git-config-email` fails.
10+
- Added processor type conventions for [JamfUploader](https://grahamrpugh.com/2020/12/14/introducing-jamf-upload.html) (`.jamf`) family of recipes.
1011

1112
## [1.10.1] - 2021-02-21
1213

pre_commit_hooks/check_autopkg_recipes.py

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,7 +354,22 @@ def validate_proc_type_conventions(process, filename):
354354
],
355355
"pkg": ["AppPkgCreator", "PkgCreator"],
356356
"install": ["InstallFromDMG", "Installer"],
357+
# https://github.com/jssimporter/JSSImporter
357358
"jss": ["JSSImporter"],
359+
# https://github.com/grahampugh/jamf-upload
360+
"jamf": [
361+
"com.github.grahampugh.jamf-upload.processors/JamfCategoryUploader",
362+
"com.github.grahampugh.jamf-upload.processors/JamfComputerGroupUploader",
363+
"com.github.grahampugh.jamf-upload.processors/JamfComputerProfileUploader",
364+
"com.github.grahampugh.jamf-upload.processors/JamfExtensionAttributeUploader",
365+
"com.github.grahampugh.jamf-upload.processors/JamfPackageUploader",
366+
"com.github.grahampugh.jamf-upload.processors/JamfPolicyDeleter",
367+
"com.github.grahampugh.jamf-upload.processors/JamfPolicyUploader",
368+
"com.github.grahampugh.jamf-upload.processors/JamfScriptUploader",
369+
"com.github.grahampugh.jamf-upload.processors/JamfSoftwareRestrictionUploader",
370+
"com.github.grahampugh.jamf-upload.processors/JamfUploaderSlacker",
371+
],
372+
# https://github.com/autopkg/filewave
358373
"filewave": ["FileWaveImporter"],
359374
}
360375

0 commit comments

Comments
 (0)