xolo-server 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f9f5dc9ea500833d5c8801217644bb7f3d13854381904e82f4258686f4ca2658
4
- data.tar.gz: d7f5707fac107f389747d7eb754c872e001e8e08e1aa9bae5c2450773dffdf47
3
+ metadata.gz: fd8f5d511b0e82176d958b1ea7b9df7b9031e080ad02c566e2aa95cada58537e
4
+ data.tar.gz: 27b72f9c11aa2709a167b766b28e5de836cb382e5f92196909389b94743d26eb
5
5
  SHA512:
6
- metadata.gz: d0eaea573242edf948631e7276654e88bfe16b586d2545af05bb09968d511e564163e9a0d15b98cf7e5bcaa0238cf48bd753f21dd5cba0be11a18861adb12091
7
- data.tar.gz: 46d443c1d859c1cd56a1cc0eef30ae9f5a8da32d878ca991eb66c1564c17c6b56cace0ab140d26d9bd5355dcfa01a624a8133060016d4b2017c8a15dc331d4fc
6
+ metadata.gz: 6442b23702ae6193a940991fcdbb8d308f8ffce132d769bb4ca16a91e885f52e95e742af1262a0b6a0108c0168c2704fefad2a70e11e3278cb461c97fbd4de69
7
+ data.tar.gz: ec49cf6483153c45e7814e5a5b831e065ce6af8f31028f0663546dabddd4ac15d296f3c723206df03933752b151c292ee72e044094b2676adff13de4167fa29f
data/README.md CHANGED
@@ -1,7 +1,45 @@
1
- # Xolo - CLI and Automated Package and Patch Management for Jamf Pro
1
+ # Xolo Server - CLI and Automated Package and Patch Management for Jamf Pro
2
2
 
3
- The xolo-server gem packages the code needed to run `xoloserver`, a sinatra-based HTTPS server that is the heart of Xolo [link to come], a command-line based system for automation and standardization around software deployment and management via Jamf Pro and the Jamf Title Editor.
3
+ <img src="http://pixaranimationstudios.github.io/xolo-home/images/dante.png" alt="Dante the xolo dog from the film Coco" width="200" height="200">
4
+
5
+
6
+ [Source Code](https://github.com/PixarAnimationStudios/xolo) &nbsp;&nbsp;&nbsp;&nbsp;[Documentation](https://github.com/PixarAnimationStudios/xolo/wiki)
7
+
8
+
9
+ Xolo (sorta pronounced 'show-low') is an http server and set of command-line tools for macOS that provide automatable access to the package deployment and patch management aspects of [Jamf Pro](https://www.jamf.com/products/jamf-pro/) and the [Jamf Title Editor](https://learn.jamf.com/en-US/bundle/title-editor/page/About_Title_Editor.html). It enhances Jamf Pro's abilities in many ways:
10
+
11
+ - Management of titles and versions/patches is scriptable and automatable, allowing developers and admins to integrate with CI/CD workflows.
12
+ - Simplifies and standardizes the complex, multistep manual process of managing titles and patches using the Title Editor and Patch Management web interfaces.
13
+ - Client installs can be performed by remotely via ssh and/or MDM
14
+ - Automated pre-release piloting of new versions/patches
15
+ - Titles can be expired (auto-uninstalled) after a period of disuse, reclaiming unused licenses.
16
+ - And more!
17
+
18
+ Xolo is the successor to depot3/d3, which allowed Patch Management via Jamf Pro before Jamf's own Patch Management system existed. Now that Jamf's Patch Management is stable and mature, d3 was rewritten from the ground up as xolo to take advantage of it, retaining a few unique enhancements that d3 provided.
19
+
20
+ Unlike d3, xolo is built around 'pure-Jamf' processes, and everything it does can be done manually in the Title Editor and Jamf Pro web interfaces.
21
+
22
+ "Xolo" is the short name for the Mexican hairless dog breed ['xoloitzcuintle'](https://en.wikipedia.org/wiki/Xoloitzcuintle) (show-low-itz-kwint-leh), as personified by Dante in the 2017 Pixar film _Coco_.
4
23
 
5
- The xolo server provides the interface between the admin tool `xadm` and the Jamf Pro and Jamf Title Editor APIs.
24
+ Xolo is built with two of our other open-source projects:
25
+
26
+ - [ruby-jss](http://github.com/PixarAnimationStudios/ruby-jss),
27
+ which provides a ruby SDK for interacting with the
28
+ [REST APIs of Jamf Pro](https://developer.jamf.com/jamf-pro/reference/classic-api)
29
+
30
+ - [windoo](http://github.com/PixarAnimationStudios/windoo), providing a ruby SDK for interacting with the
31
+ [REST API of the Title Editor](https://developer.jamf.com/jamf-pro/reference/gettokenclaims).
32
+
33
+ See the xolo-admin.gemspec and xolo-server.gemspec files for other open-source tools and libraries used by Xolo.
34
+
35
+ For detailed documentation about Xolo:<br/>
36
+ (yet to be written....)
37
+
38
+ - xoloserver, the https server that makes it all go
39
+ - xadm, the Xolo admin tool for managing titles and versions via option-based or interactive command-line
40
+ - xolo, the Xolo client tool for manually working with titles and versions on managed Macs
41
+
42
+
43
+ The xolo-server gem packages the code needed to run `xoloserver`, a sinatra-based HTTPS server that is the heart of Xolo [link to come], a command-line based system for automation and standardization around software deployment and management via Jamf Pro and the Jamf Title Editor.
6
44
 
7
- More documentation coming soon.
45
+ The xolo server provides the interface between the admin tool `xadm` and the Jamf Pro and Jamf Title Editor APIs.
data/bin/xoloserver CHANGED
@@ -8,6 +8,9 @@
8
8
 
9
9
  # frozen_string_literal: true
10
10
 
11
+ # die if not root
12
+ raise 'You must run this program as root (using sudo?)' if Process.uid != 0
13
+
11
14
  require 'xolo/server'
12
15
 
13
16
  # The Server Wrapper App