forked from autopkg/cgerke-recipes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathFIRSTBOOT.sccm.recipe
executable file
·40 lines (40 loc) · 1.36 KB
/
FIRSTBOOT.sccm.recipe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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>ParentRecipe</key>
<string>com.github.autopkg.cgerke-recipes.pkg.FIRSTBOOT</string>
<key>Description</key>
<string>Create a cmmac package. Create a package. This type of script is very subjective so
it serves as an example of a minimal "first boot" script to bootstrap your deployment system. Many
people like to use LaunchDaemons for this, I just want to ensure some things occur well before
the GUI.</string>
<key>Identifier</key>
<string>com.github.autopkg.cgerke-recipes.sccm.FIRSTBOOT</string>
<key>Input</key>
<dict>
<key>NAME</key>
<string>FIRSTBOOT</string>
</dict>
<key>MinimumVersion</key>
<string>0.4.0</string>
<key>Process</key>
<array>
<dict>
<key>Comment</key>
<string>Create a cmmac file for SCCM using a shared processor.</string>
<key>Processor</key>
<string>com.github.autopkg.cgerke-recipes.SharedProcessors/CmmacCreator</string>
<key>Arguments</key>
<dict>
<key>source_file</key>
<string>%RECIPE_CACHE_DIR%/%NAME%.pkg</string>
<key>destination_directory</key>
<string>%RECIPE_CACHE_DIR%</string>
</dict>
<key>SharedProcessorRepoURL</key>
<string>https://github.com/autopkg/cgerke-recipes</string>
</dict>
</array>
</dict>
</plist>