xolo-admin 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: bc16bfe452748613b4da96e31dab66119c8d3ff837a44f6baa9b2b6a187ffdf0
4
- data.tar.gz: ec5718f47f8996497fa4076629fc9fb1d8f5f44beeb77fb6eb4ac7f04c9140e8
3
+ metadata.gz: cbba7b8d84c902f3a3683808708db421ec8a3a1759aaee8e349da02a54b3c45e
4
+ data.tar.gz: 741dcbf5fc8c4df15c2043ea28d467093e56dc56747956b109f994e177e2cce0
5
5
  SHA512:
6
- metadata.gz: 5ea09e8594bfdfad550e5e1ad7ba0db2a9fe25bd5a06cfeaa46999485efa676353041bf671acd6e831224f6ba22cf810c4aa15b6717cff524d47672c7e5471e4
7
- data.tar.gz: b3c676c62037ec95d69ac5ac411fdfd375163bfb980e003f09348af898bd08c57965853c0e94c1ac7acfa940ea82c81e608477173b7c19a325c4684affc45204
6
+ metadata.gz: e1617d119ebb27e0785a7ebe1201f2fc96244834c5145ae4a9a810a33a951a4f30c6dc2593d60283b489f6f4d2f2110c81454e383033e25f2001d24aeeb9a2a6
7
+ data.tar.gz: 381ac12e8bcee2955b22b1610b661b63764fc04f5b123a2ae85d468add291f2831b1c1a8cbc1282df0b81c8238a204849b909f2ac4fd2ed9bb54f7db1f439926
data/README.md CHANGED
@@ -1,5 +1,42 @@
1
- # Xolo - CLI and Automated Package and Patch Management for Jamf Pro
1
+ # Xolo Admin - CLI and Automated Package and Patch Management for Jamf Pro
2
2
 
3
- The xolo-admin gem packages the code needed to run `xadm`, the admin tool for 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
4
 
5
- More documentation coming soon.
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_.
23
+
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
+ The xolo-admin gem packages the code needed to run 'xadm', the command-line tool for system administrators to deploy and maintain software titles using Xolo.
data/bin/xadm CHANGED
@@ -105,7 +105,7 @@ begin
105
105
  app.run
106
106
  exit 0
107
107
  rescue => e
108
- warn "Error: #{e.class.name.split('::').last}: #{e}"
108
+ warn "Error: #{e.class}: #{e}"
109
109
  if debug
110
110
  warn 'Backtrace:'
111
111
  e.backtrace.each { |l| warn "..#{l}" }