├── .gitignore ├── CHANGELOG.md ├── JSSRecipeCreator.py.bak ├── LICENSE.txt ├── README.md ├── Templates ├── PolicyTemplate.xml ├── RecipeTemplate-package-only.plist ├── RecipeTemplate.plist └── SmartGroupTemplate.xml └── jss_recipe_creator.py /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.recipe 3 | *.DS_Store 4 | Templates/YAML/* 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jssimporter/JSSRecipeCreator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /JSSRecipeCreator.py.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jssimporter/JSSRecipeCreator/HEAD/JSSRecipeCreator.py.bak -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jssimporter/JSSRecipeCreator/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jssimporter/JSSRecipeCreator/HEAD/README.md -------------------------------------------------------------------------------- /Templates/PolicyTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jssimporter/JSSRecipeCreator/HEAD/Templates/PolicyTemplate.xml -------------------------------------------------------------------------------- /Templates/RecipeTemplate-package-only.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jssimporter/JSSRecipeCreator/HEAD/Templates/RecipeTemplate-package-only.plist -------------------------------------------------------------------------------- /Templates/RecipeTemplate.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jssimporter/JSSRecipeCreator/HEAD/Templates/RecipeTemplate.plist -------------------------------------------------------------------------------- /Templates/SmartGroupTemplate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jssimporter/JSSRecipeCreator/HEAD/Templates/SmartGroupTemplate.xml -------------------------------------------------------------------------------- /jss_recipe_creator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jssimporter/JSSRecipeCreator/HEAD/jss_recipe_creator.py --------------------------------------------------------------------------------