This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
*** Initial clean install *** | |
Nov 18 22:00:48 m-vm0sh6bldlht installd[460]: PackageKit: ----- Begin install ----- | |
Nov 18 22:00:48 m-vm0sh6bldlht installd[460]: PackageKit: request=PKInstallRequest <4 packages, destination=/> | |
Nov 18 22:00:48 m-vm0sh6bldlht installd[460]: PackageKit: packages=( | |
"PKLeopardPackage <file://localhost/Users/eucadmin/Desktop/munkitools-2.4.0.2561-script-signed.pkg#munkitools_core-2.4.0.2561.pkg>", | |
"PKLeopardPackage <file://localhost/Users/eucadmin/Desktop/munkitools-2.4.0.2561-script-signed.pkg#munkitools_admin-2.4.0.2561.pkg>", | |
"PKLeopardPackage <file://localhost/Users/eucadmin/Desktop/munkitools-2.4.0.2561-script-signed.pkg#munkitools_app-4.1.2531.pkg>", | |
"PKLeopardPackage <file://localhost/Users/eucadmin/Desktop/munkitools-2.4.0.2561-script-signed.pkg#munkitools_launchd-2.0.0.1969.pkg>" | |
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>items</key> | |
<array> | |
<dict> | |
<key>assets</key> | |
<array> | |
<dict> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plist version="1.0"> | |
<dict> | |
<key>items</key> | |
<array> | |
<dict> | |
<key>assets</key> | |
<array> | |
<dict> | |
<key>kind</key> | |
<string>software-package</string> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>items</key> | |
<array> | |
<dict> | |
<key>assets</key> | |
<array> | |
<dict> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
# pylint: disable=fixme, line-too-long, missing-docstring, C0103 | |
# Many parts of this were taken from Greg Neagle's COSXIP (https://github.com/munki/createOSXinstallPkg) | |
# No parsing of 'BannedRegexMatchVersion' keys currently because regex is hard. | |
# | |
# Output prints a list of incompatible apps for each major OS X version | |
# with its version and optional file listing of the target app. | |
import plistlib |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# encoding: utf-8 | |
# | |
# Copyright 2014 - The Regents of the University of Michigan. | |
# | |
# Licensed under the Apache License, Version 2.0 (the "License"); | |
# you may not use this file except in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Usage: diskutil [quiet] <verb> <options>, where <verb> is as follows: | |
Usage: diskutil [quiet] coreStorage|CS <verb> <options>, | |
Usage: diskutil coreStorage list | |
Usage: diskutil coreStorage info[rmation] [-plist] | |
Usage: diskutil coreStorage convert | |
Usage: diskutil coreStorage revert | |
Usage: diskutil coreStorage create lvgName | |
Usage: diskutil coreStorage delete lvgUUID|lvgName | |
Usage: diskutil coreStorage rename lvgUUID|lvgName newName | |
Usage: diskutil coreStorage addDisk lvgUUID NewMemberDeviceName |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Usage: diskutil [quiet] <verb> <options>, where <verb> is as follows: | |
Usage: diskutil [quiet] coreStorage|CS <verb> <options>, | |
Usage: diskutil coreStorage list | |
Usage: diskutil coreStorage info[rmation] [-plist] | |
Usage: diskutil coreStorage convert | |
Usage: diskutil coreStorage revert | |
Usage: diskutil coreStorage create lvgName | |
Usage: diskutil coreStorage delete lvgUUID|lvgName | |
Usage: diskutil coreStorage rename lvgUUID|lvgName newName | |
Usage: diskutil coreStorage addDisk lvgUUID NewMemberDeviceName |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import objc | |
import plistlib | |
class attrdict(dict): | |
__getattr__ = dict.__getitem__ | |
__setattr__ = dict.__setitem__ | |
ServerInformation = attrdict() |