├── .gitignore ├── LICENSE ├── README.md ├── Scripts └── munki_enroll.sh ├── manifests ├── desktop_template └── laptop_template └── munki-enroll └── enroll.php /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aysiu/munki-serial-enroll/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aysiu/munki-serial-enroll/HEAD/README.md -------------------------------------------------------------------------------- /Scripts/munki_enroll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aysiu/munki-serial-enroll/HEAD/Scripts/munki_enroll.sh -------------------------------------------------------------------------------- /manifests/desktop_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aysiu/munki-serial-enroll/HEAD/manifests/desktop_template -------------------------------------------------------------------------------- /manifests/laptop_template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aysiu/munki-serial-enroll/HEAD/manifests/laptop_template -------------------------------------------------------------------------------- /munki-enroll/enroll.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aysiu/munki-serial-enroll/HEAD/munki-enroll/enroll.php --------------------------------------------------------------------------------