Slide 1

Slide 1 text

No content

Slide 2

Slide 2 text

© JAMF Software, LLC Duncan McCracken Co-Founder / Technical Director Mondada Pty Ltd Luckie Vang Test Engineer Jamf

Slide 3

Slide 3 text

© JAMF Software, LLC A Patch Deep Dive Presentation agenda: About Version Control Jamf Patch History External Patch Endpoints Connecting to an External Source External Patch Source Projects

Slide 4

Slide 4 text

© JAMF Software, LLC A Patch Deep Dive Presentation agenda: Structure of a Patch Definition Creating Patch Definitions Pre-supplied Patch Definitions

Slide 5

Slide 5 text

© JAMF Software, LLC About Version Control Not as simple as it seems on the surface

Slide 6

Slide 6 text

© JAMF Software, LLC About Version Control • Where is the information stored? Not as simple as it seems on the surface

Slide 7

Slide 7 text

© JAMF Software, LLC About Version Control • Default Location
 .app/Contents/Info.plist • Default Key
 CFBundleShortVersionString Where is the information stored?

Slide 8

Slide 8 text

© JAMF Software, LLC About Version Control • Except for when it isn’t • In the Context of Jamf: Extension Attribute Where is the information stored?

Slide 9

Slide 9 text

© JAMF Software, LLC About Version Control • Where is the information stored? • Standards in version strings Not as simple as it seems on the surface

Slide 10

Slide 10 text

© JAMF Software, LLC About Version Control • What does a version string look like? Standards in version strings

Slide 11

Slide 11 text

© JAMF Software, LLC About Version Control • What does should a version string look like? • Major . Minor . Build [ . Revision ] Standards (or lack of) in version strings

Slide 12

Slide 12 text

© JAMF Software, LLC About Version Control • Lack of standards in version strings • Where the information is stored • Comparison vs Lookup Not as simple as it seems on the surface

Slide 13

Slide 13 text

© JAMF Software, LLC About Version Control • Comparison gives a Relative State Comparison vs Lookup

Slide 14

Slide 14 text

© JAMF Software, LLC About Version Control • Comparison gives a Relative State • Comparison requires consistency Comparison vs Lookup

Slide 15

Slide 15 text

© JAMF Software, LLC About Version Control • Comparison gives a Relative State • Comparison requires consistency • Comparison works most of the time Comparison vs Lookup

Slide 16

Slide 16 text

© JAMF Software, LLC About Version Control • Lookup doesn't care about consistency Comparison vs Lookup

Slide 17

Slide 17 text

© JAMF Software, LLC About Version Control • Lookup doesn't care about consistency • Lookup is reactive Comparison vs Lookup

Slide 18

Slide 18 text

© JAMF Software, LLC About Version Control • Lookup doesn't care about consistency • Lookup is reactive • Lookup works all the time Comparison vs Lookup

Slide 19

Slide 19 text

© JAMF Software, LLC Jamf Patch History • Patch Reporting in Jamf Pro 9.96 The Road So Far…

Slide 20

Slide 20 text

© JAMF Software, LLC Jamf Patch History • Patch Reporting in Jamf Pro 9.96 • Patch Management in Jamf Pro 10.0 The Road So Far…

Slide 21

Slide 21 text

© JAMF Software, LLC Jamf Patch History • Patch Reporting in Jamf Pro 9.96 • Patch Management in Jamf Pro 10.0 • External Patch Sources in Jamf Pro 10.2 The Road So Far…

Slide 22

Slide 22 text

© JAMF Software, LLC External Patch Endpoints https://www.jamf.com/jamf-nation/articles/497

Slide 23

Slide 23 text

© JAMF Software, LLC External Patch Endpoints • API - API communication https://www.jamf.com/jamf-nation/articles/497

Slide 24

Slide 24 text

© JAMF Software, LLC External Patch Endpoints • API - API communication • /software https://www.jamf.com/jamf-nation/articles/497

Slide 25

Slide 25 text

© JAMF Software, LLC

Slide 26

Slide 26 text

© JAMF Software, LLC External Patch Endpoints • API - API communication • /software • /software/{ids} https://www.jamf.com/jamf-nation/articles/497

Slide 27

Slide 27 text

© JAMF Software, LLC

Slide 28

Slide 28 text

© JAMF Software, LLC External Patch Endpoints • API - API communication • /software • /software/{ids} • /patch/{id} https://www.jamf.com/jamf-nation/articles/497

Slide 29

Slide 29 text

© JAMF Software, LLC

Slide 30

Slide 30 text

© JAMF Software, LLC

Slide 31

Slide 31 text

© JAMF Software, LLC Connecting to an External Source • The Java Keystore must trust the SSL Cert Things to Remember

Slide 32

Slide 32 text

© JAMF Software, LLC Connecting to an External Source • The Java Keystore must trust the SSL Cert • The Endpoint must have at least one definition Things to Remember

Slide 33

Slide 33 text

© JAMF Software, LLC Connecting to an External Source • The Java Keystore must trust the SSL Cert • The Endpoint must have at least one definition • Patch Definitions for 3rd-party sources can't be code-signed Things to Remember

Slide 34

Slide 34 text

© JAMF Software, LLC External Patch Source Projects • Patch Server for Jamf Pro
 https://patchserver.readthedocs.io/en/latest/ Take a Look at These

Slide 35

Slide 35 text

© JAMF Software, LLC

Slide 36

Slide 36 text

© JAMF Software, LLC External Patch Source Projects • Patch Server for Jamf Pro
 https://patchserver.readthedocs.io/en/latest/ • Kinobi Open Source
 https://kinobi.io/ Take a Look at These

Slide 37

Slide 37 text

© JAMF Software, LLC

Slide 38

Slide 38 text

© JAMF Software, LLC Structure of a Patch Definition • Jamf Pro External Patch Source Endpoints
 https://www.jamf.com/jamf-nation/articles/497 References

Slide 39

Slide 39 text

© JAMF Software, LLC Structure of a Patch Definition • Kinobi: Understanding Patch Definitions
 https://github.com/mondada/kinobi/wiki/ Understanding-Patch-Definitions References

Slide 40

Slide 40 text

© JAMF Software, LLC

Slide 41

Slide 41 text

© JAMF Software, LLC Structure of a Patch Definition • Corresponds to the Jamf Pro Database Patch Data Structure

Slide 42

Slide 42 text

© JAMF Software, LLC Structure of a Patch Definition • Corresponds to the Jamf Pro Database • Modular and extensible Patch Data Structure

Slide 43

Slide 43 text

© JAMF Software, LLC Structure of a Patch Definition • Corresponds to the Jamf Pro Database • Modular and extensible • Not everything is used Patch Data Structure

Slide 44

Slide 44 text

© JAMF Software, LLC Structure of a Patch Definition • Corresponds to the Jamf Pro Database • Modular and extensible • Not everything is used • Some duplication of information Patch Data Structure

Slide 45

Slide 45 text

© JAMF Software, LLC Structure of a Patch Definition • Software Title • patch • components • extensionAttributes Object Types

Slide 46

Slide 46 text

© JAMF Software, LLC Structure of a Patch Definition • killApps • criteria (used for multiple things) Object Types

Slide 47

Slide 47 text

© JAMF Software, LLC Structure of a Patch Definition • name • publisher • appName • bundleId Software Title

Slide 48

Slide 48 text

© JAMF Software, LLC Structure of a Patch Definition • lastModified • currentVersion • id Software Title

Slide 49

Slide 49 text

© JAMF Software, LLC Structure of a Patch Definition • requirements • patches • extensionAttributes Software Title

Slide 50

Slide 50 text

© JAMF Software, LLC Structure of a Patch Definition • version • releaseDate • standalone • minimumOperatingSystem patch

Slide 51

Slide 51 text

© JAMF Software, LLC Structure of a Patch Definition • reboot patch

Slide 52

Slide 52 text

© JAMF Software, LLC Structure of a Patch Definition • killApps • components • capabilities • dependencies patch

Slide 53

Slide 53 text

© JAMF Software, LLC Structure of a Patch Definition • name • version components

Slide 54

Slide 54 text

© JAMF Software, LLC Structure of a Patch Definition • criteria components

Slide 55

Slide 55 text

© JAMF Software, LLC Structure of a Patch Definition • key • value • displayName extensionAttributes

Slide 56

Slide 56 text

© JAMF Software, LLC Structure of a Patch Definition • bundleId • appName killApps

Slide 57

Slide 57 text

© JAMF Software, LLC Structure of a Patch Definition • name • operator • value • type Criteria

Slide 58

Slide 58 text

© JAMF Software, LLC Structure of a Patch Definition • name • operator • value • type Criteria • and

Slide 59

Slide 59 text

© JAMF Software, LLC Creating Patch Definitions Hand-cutting the JSON

Slide 60

Slide 60 text

© JAMF Software, LLC Creating Patch Definitions Kinobi Editor

Slide 61

Slide 61 text

© JAMF Software, LLC

Slide 62

Slide 62 text

© JAMF Software, LLC

Slide 63

Slide 63 text

© JAMF Software, LLC

Slide 64

Slide 64 text

© JAMF Software, LLC

Slide 65

Slide 65 text

© JAMF Software, LLC

Slide 66

Slide 66 text

© JAMF Software, LLC

Slide 67

Slide 67 text

© JAMF Software, LLC

Slide 68

Slide 68 text

© JAMF Software, LLC

Slide 69

Slide 69 text

© JAMF Software, LLC

Slide 70

Slide 70 text

© JAMF Software, LLC

Slide 71

Slide 71 text

© JAMF Software, LLC

Slide 72

Slide 72 text

© JAMF Software, LLC

Slide 73

Slide 73 text

© JAMF Software, LLC

Slide 74

Slide 74 text

© JAMF Software, LLC

Slide 75

Slide 75 text

© JAMF Software, LLC

Slide 76

Slide 76 text

© JAMF Software, LLC

Slide 77

Slide 77 text

© JAMF Software, LLC

Slide 78

Slide 78 text

© JAMF Software, LLC

Slide 79

Slide 79 text

© JAMF Software, LLC

Slide 80

Slide 80 text

© JAMF Software, LLC

Slide 81

Slide 81 text

© JAMF Software, LLC

Slide 82

Slide 82 text

© JAMF Software, LLC

Slide 83

Slide 83 text

© JAMF Software, LLC

Slide 84

Slide 84 text

© JAMF Software, LLC

Slide 85

Slide 85 text

© JAMF Software, LLC

Slide 86

Slide 86 text

© JAMF Software, LLC

Slide 87

Slide 87 text

© JAMF Software, LLC

Slide 88

Slide 88 text

© JAMF Software, LLC

Slide 89

Slide 89 text

© JAMF Software, LLC

Slide 90

Slide 90 text

© JAMF Software, LLC

Slide 91

Slide 91 text

© JAMF Software, LLC

Slide 92

Slide 92 text

© JAMF Software, LLC

Slide 93

Slide 93 text

© JAMF Software, LLC

Slide 94

Slide 94 text

© JAMF Software, LLC

Slide 95

Slide 95 text

© JAMF Software, LLC

Slide 96

Slide 96 text

© JAMF Software, LLC

Slide 97

Slide 97 text

© JAMF Software, LLC

Slide 98

Slide 98 text

© JAMF Software, LLC

Slide 99

Slide 99 text

© JAMF Software, LLC

Slide 100

Slide 100 text

© JAMF Software, LLC

Slide 101

Slide 101 text

© JAMF Software, LLC

Slide 102

Slide 102 text

© JAMF Software, LLC

Slide 103

Slide 103 text

© JAMF Software, LLC Creating Patch Definitions • Validate Extension Attributes Pro Tips

Slide 104

Slide 104 text

© JAMF Software, LLC Creating Patch Definitions • Validate Extension Attributes • Use Advanced Searches in Jamf Pro Pro Tips

Slide 105

Slide 105 text

© JAMF Software, LLC Creating Patch Definitions • Validate Extension Attributes • Use Advanced Searches in Jamf Pro • Smart Groups without parenthesis Pro Tips

Slide 106

Slide 106 text

© JAMF Software, LLC Pre-supplied Patch Definitions • Community Patch
 https://communitypatch.readthedocs.io/ If [insert annoying part] all seems too much…

Slide 107

Slide 107 text

© JAMF Software, LLC Pre-supplied Patch Definitions • Community Patch
 https://communitypatch.readthedocs.io/ • Kinobi Subscription
 https://kinobi.io/kinobi/ If [insert annoying part] all seems too much…

Slide 108

Slide 108 text

© JAMF Software, LLC One More Thing… NetSUS 5.0

Slide 109

Slide 109 text

© JAMF Software, LLC NetSUS 5.0 • Improved UI • Enable / Disable Services • Additional System Management • Better Sanity Checking New Features

Slide 110

Slide 110 text

© JAMF Software, LLC NetSUS 5.0 • File Sharing • Multiple NBIs • SUS Catalog Selection • And many more New Features

Slide 111

Slide 111 text

© JAMF Software, LL THANK YOU!