├── .gitignore ├── Acknowledgements.md ├── Changes ├── DISCLAIMER ├── Info.txt ├── LICENSE ├── Packages ├── Client │ ├── Components.plist │ ├── Distribution │ ├── Files │ │ ├── .mpRM │ │ ├── Applications │ │ │ └── .mpRM │ │ └── Library │ │ │ ├── .mpRM │ │ │ ├── LaunchAgents │ │ │ ├── .mpRM │ │ │ ├── gov.llnl.MPLoginAgent.plist │ │ │ └── gov.llnl.mp.status.plist │ │ │ ├── LaunchDaemons │ │ │ ├── .mpRM │ │ │ ├── gov.llnl.mp.agent.plist │ │ │ ├── gov.llnl.mp.helper.plist │ │ │ └── gov.llnl.mp.status.ui.plist │ │ │ ├── MacPatch │ │ │ ├── .mpRM │ │ │ └── Client │ │ │ │ ├── .mpRM │ │ │ │ ├── Data │ │ │ │ ├── .mpRM │ │ │ │ └── MacPatch │ │ │ │ │ ├── .mpRM │ │ │ │ │ └── banner │ │ │ │ │ ├── .mpRM │ │ │ │ │ ├── clientgroup │ │ │ │ │ └── .mpRM │ │ │ │ │ └── default │ │ │ │ │ └── .mpRM │ │ │ │ ├── Logs │ │ │ │ └── .mpRM │ │ │ │ └── Tools │ │ │ │ ├── .mpRM │ │ │ │ ├── MPUninstaller.command │ │ │ │ └── Support │ │ │ │ ├── .mpRM │ │ │ │ └── MPDiagCollector.sh │ │ │ └── PrivilegedHelperTools │ │ │ └── .mpRM │ ├── PackageInfo │ ├── Resources │ │ ├── Background.png │ │ ├── License.rtf │ │ ├── Welcome.rtf │ │ └── mpInfo.plist │ └── Scripts │ │ ├── postinstall │ │ └── preinstall ├── Combined │ ├── Distribution │ ├── Distribution_Beta │ ├── Requirements.plist │ └── Resources │ │ ├── Background.png │ │ ├── Background_done.png │ │ ├── License.rtf │ │ ├── Welcome.rtf │ │ └── mpInfo.plist ├── Docs │ └── BuildClient.rtfd │ │ └── TXT.rtf ├── MDM │ └── Distribution ├── Updater │ ├── Components.plist │ ├── Files │ │ ├── .mpRM │ │ └── Library │ │ │ ├── .mpRM │ │ │ ├── LaunchDaemons │ │ │ ├── .mpRM │ │ │ └── gov.llnl.mp.updater.plist │ │ │ └── MacPatch │ │ │ ├── .mpRM │ │ │ └── Updater │ │ │ ├── .mpRM │ │ │ └── Logs │ │ │ └── .mpRM │ ├── PackageInfo │ ├── Resources │ │ ├── Background.png │ │ ├── License.rtf │ │ └── Welcome.rtf │ └── Scripts │ │ ├── MigrationInfo.txt │ │ ├── postinstall │ │ └── preinstall └── mpPlanB │ ├── Components.plist │ ├── Distribution │ ├── Files │ ├── .mpRM │ ├── Library │ │ ├── .mpRM │ │ ├── LaunchDaemons │ │ │ └── .mpRM │ │ └── Preferences │ │ │ └── gov.llnl.planb.plist │ └── usr │ │ ├── .mpRM │ │ └── local │ │ ├── .mpRM │ │ ├── bin │ │ └── .mpRM │ │ └── sbin │ │ └── .mpRM │ ├── PackageInfo │ ├── Resources │ ├── Background.png │ └── License.rtf │ └── Scripts │ ├── postinstall │ └── preinstall ├── README.md ├── Source ├── Agent │ ├── InstallerBuildInfo.txt │ └── MacPatch.pkg.zip ├── Client │ ├── banner_sample │ │ ├── banner.txt │ │ └── html │ │ │ ├── banner.html │ │ │ ├── bootstrap-table │ │ │ ├── bootstrap-table-locale-all.js │ │ │ ├── bootstrap-table-locale-all.min.js │ │ │ ├── bootstrap-table.css │ │ │ ├── bootstrap-table.js │ │ │ ├── bootstrap-table.min.css │ │ │ ├── bootstrap-table.min.js │ │ │ ├── extensions │ │ │ │ ├── accent-neutralise │ │ │ │ │ ├── bootstrap-table-accent-neutralise.js │ │ │ │ │ └── bootstrap-table-accent-neutralise.min.js │ │ │ │ ├── angular │ │ │ │ │ ├── bootstrap-table-angular.js │ │ │ │ │ └── bootstrap-table-angular.min.js │ │ │ │ ├── auto-refresh │ │ │ │ │ ├── bootstrap-table-auto-refresh.css │ │ │ │ │ ├── bootstrap-table-auto-refresh.js │ │ │ │ │ └── bootstrap-table-auto-refresh.min.js │ │ │ │ ├── click-edit-row │ │ │ │ │ ├── bootstrap-table-click-edit-row.css │ │ │ │ │ ├── bootstrap-table-click-edit-row.js │ │ │ │ │ └── bootstrap-table-click-edit-row.min.js │ │ │ │ ├── cookie │ │ │ │ │ ├── bootstrap-table-cookie.js │ │ │ │ │ └── bootstrap-table-cookie.min.js │ │ │ │ ├── copy-rows │ │ │ │ │ ├── bootstrap-table-copy-rows.js │ │ │ │ │ └── bootstrap-table-copy-rows.min.js │ │ │ │ ├── editable │ │ │ │ │ ├── bootstrap-table-editable.js │ │ │ │ │ └── bootstrap-table-editable.min.js │ │ │ │ ├── export │ │ │ │ │ ├── bootstrap-table-export.js │ │ │ │ │ └── bootstrap-table-export.min.js │ │ │ │ ├── filter-control │ │ │ │ │ ├── bootstrap-table-filter-control.css │ │ │ │ │ ├── bootstrap-table-filter-control.js │ │ │ │ │ └── bootstrap-table-filter-control.min.js │ │ │ │ ├── filter │ │ │ │ │ ├── bootstrap-table-filter.js │ │ │ │ │ └── bootstrap-table-filter.min.js │ │ │ │ ├── flat-json │ │ │ │ │ ├── bootstrap-table-flat-json.js │ │ │ │ │ └── bootstrap-table-flat-json.min.js │ │ │ │ ├── group-by-v2 │ │ │ │ │ ├── bootstrap-table-group-by.css │ │ │ │ │ ├── bootstrap-table-group-by.js │ │ │ │ │ └── bootstrap-table-group-by.min.js │ │ │ │ ├── group-by │ │ │ │ │ ├── bootstrap-table-group-by.css │ │ │ │ │ ├── bootstrap-table-group-by.js │ │ │ │ │ └── bootstrap-table-group-by.min.js │ │ │ │ ├── i18n-enhance │ │ │ │ │ ├── bootstrap-table-i18n-enhance.js │ │ │ │ │ └── bootstrap-table-i18n-enhance.min.js │ │ │ │ ├── key-events │ │ │ │ │ ├── bootstrap-table-key-events.js │ │ │ │ │ └── bootstrap-table-key-events.min.js │ │ │ │ ├── mobile │ │ │ │ │ ├── bootstrap-table-mobile.js │ │ │ │ │ └── bootstrap-table-mobile.min.js │ │ │ │ ├── multi-column-toggle │ │ │ │ │ ├── bootstrap-table-multi-toggle.js │ │ │ │ │ └── bootstrap-table-multi-toggle.min.js │ │ │ │ ├── multiple-search │ │ │ │ │ ├── bootstrap-table-multiple-search.js │ │ │ │ │ └── bootstrap-table-multiple-search.min.js │ │ │ │ ├── multiple-selection-row │ │ │ │ │ ├── bootstrap-table-multiple-selection-row.css │ │ │ │ │ ├── bootstrap-table-multiple-selection-row.js │ │ │ │ │ └── bootstrap-table-multiple-selection-row.min.js │ │ │ │ ├── multiple-sort │ │ │ │ │ ├── bootstrap-table-multiple-sort.js │ │ │ │ │ └── bootstrap-table-multiple-sort.min.js │ │ │ │ ├── natural-sorting │ │ │ │ │ ├── bootstrap-table-natural-sorting.js │ │ │ │ │ └── bootstrap-table-natural-sorting.min.js │ │ │ │ ├── print │ │ │ │ │ ├── bootstrap-table-print.js │ │ │ │ │ └── bootstrap-table-print.min.js │ │ │ │ ├── reorder-columns │ │ │ │ │ ├── bootstrap-table-reorder-columns.js │ │ │ │ │ └── bootstrap-table-reorder-columns.min.js │ │ │ │ ├── reorder-rows │ │ │ │ │ ├── bootstrap-table-reorder-rows.css │ │ │ │ │ ├── bootstrap-table-reorder-rows.js │ │ │ │ │ └── bootstrap-table-reorder-rows.min.js │ │ │ │ ├── resizable │ │ │ │ │ ├── bootstrap-table-resizable.js │ │ │ │ │ └── bootstrap-table-resizable.min.js │ │ │ │ ├── select2-filter │ │ │ │ │ ├── bootstrap-table-select2-filter.js │ │ │ │ │ └── bootstrap-table-select2-filter.min.js │ │ │ │ ├── sticky-header │ │ │ │ │ ├── bootstrap-table-sticky-header.css │ │ │ │ │ ├── bootstrap-table-sticky-header.js │ │ │ │ │ └── bootstrap-table-sticky-header.min.js │ │ │ │ ├── toolbar │ │ │ │ │ ├── bootstrap-table-toolbar.js │ │ │ │ │ └── bootstrap-table-toolbar.min.js │ │ │ │ └── tree-column │ │ │ │ │ ├── bootstrap-table-tree-column.css │ │ │ │ │ ├── bootstrap-table-tree-column.js │ │ │ │ │ └── bootstrap-table-tree-column.min.js │ │ │ ├── jquery.min.js │ │ │ └── locale │ │ │ │ ├── bootstrap-table-af-ZA.js │ │ │ │ ├── bootstrap-table-af-ZA.min.js │ │ │ │ ├── bootstrap-table-ar-SA.js │ │ │ │ ├── bootstrap-table-ar-SA.min.js │ │ │ │ ├── bootstrap-table-ca-ES.js │ │ │ │ ├── bootstrap-table-ca-ES.min.js │ │ │ │ ├── bootstrap-table-cs-CZ.js │ │ │ │ ├── bootstrap-table-cs-CZ.min.js │ │ │ │ ├── bootstrap-table-da-DK.js │ │ │ │ ├── bootstrap-table-da-DK.min.js │ │ │ │ ├── bootstrap-table-de-DE.js │ │ │ │ ├── bootstrap-table-de-DE.min.js │ │ │ │ ├── bootstrap-table-el-GR.js │ │ │ │ ├── bootstrap-table-el-GR.min.js │ │ │ │ ├── bootstrap-table-en-US.js │ │ │ │ ├── bootstrap-table-en-US.min.js │ │ │ │ ├── bootstrap-table-es-AR.js │ │ │ │ ├── bootstrap-table-es-AR.min.js │ │ │ │ ├── bootstrap-table-es-CL.js │ │ │ │ ├── bootstrap-table-es-CL.min.js │ │ │ │ ├── bootstrap-table-es-CR.js │ │ │ │ ├── bootstrap-table-es-CR.min.js │ │ │ │ ├── bootstrap-table-es-ES.js │ │ │ │ ├── bootstrap-table-es-ES.min.js │ │ │ │ ├── bootstrap-table-es-MX.js │ │ │ │ ├── bootstrap-table-es-MX.min.js │ │ │ │ ├── bootstrap-table-es-NI.js │ │ │ │ ├── bootstrap-table-es-NI.min.js │ │ │ │ ├── bootstrap-table-es-SP.js │ │ │ │ ├── bootstrap-table-es-SP.min.js │ │ │ │ ├── bootstrap-table-et-EE.js │ │ │ │ ├── bootstrap-table-et-EE.min.js │ │ │ │ ├── bootstrap-table-fa-IR.js │ │ │ │ ├── bootstrap-table-fa-IR.min.js │ │ │ │ ├── bootstrap-table-fr-BE.js │ │ │ │ ├── bootstrap-table-fr-BE.min.js │ │ │ │ ├── bootstrap-table-fr-FR.js │ │ │ │ ├── bootstrap-table-fr-FR.min.js │ │ │ │ ├── bootstrap-table-he-IL.js │ │ │ │ ├── bootstrap-table-he-IL.min.js │ │ │ │ ├── bootstrap-table-hr-HR.js │ │ │ │ ├── bootstrap-table-hr-HR.min.js │ │ │ │ ├── bootstrap-table-hu-HU.js │ │ │ │ ├── bootstrap-table-hu-HU.min.js │ │ │ │ ├── bootstrap-table-id-ID.js │ │ │ │ ├── bootstrap-table-id-ID.min.js │ │ │ │ ├── bootstrap-table-it-IT.js │ │ │ │ ├── bootstrap-table-it-IT.min.js │ │ │ │ ├── bootstrap-table-ja-JP.js │ │ │ │ ├── bootstrap-table-ja-JP.min.js │ │ │ │ ├── bootstrap-table-ka-GE.js │ │ │ │ ├── bootstrap-table-ka-GE.min.js │ │ │ │ ├── bootstrap-table-ko-KR.js │ │ │ │ ├── bootstrap-table-ko-KR.min.js │ │ │ │ ├── bootstrap-table-ms-MY.js │ │ │ │ ├── bootstrap-table-ms-MY.min.js │ │ │ │ ├── bootstrap-table-nb-NO.js │ │ │ │ ├── bootstrap-table-nb-NO.min.js │ │ │ │ ├── bootstrap-table-nl-NL.js │ │ │ │ ├── bootstrap-table-nl-NL.min.js │ │ │ │ ├── bootstrap-table-pl-PL.js │ │ │ │ ├── bootstrap-table-pl-PL.min.js │ │ │ │ ├── bootstrap-table-pt-BR.js │ │ │ │ ├── bootstrap-table-pt-BR.min.js │ │ │ │ ├── bootstrap-table-pt-PT.js │ │ │ │ ├── bootstrap-table-pt-PT.min.js │ │ │ │ ├── bootstrap-table-ro-RO.js │ │ │ │ ├── bootstrap-table-ro-RO.min.js │ │ │ │ ├── bootstrap-table-ru-RU.js │ │ │ │ ├── bootstrap-table-ru-RU.min.js │ │ │ │ ├── bootstrap-table-sk-SK.js │ │ │ │ ├── bootstrap-table-sk-SK.min.js │ │ │ │ ├── bootstrap-table-sv-SE.js │ │ │ │ ├── bootstrap-table-sv-SE.min.js │ │ │ │ ├── bootstrap-table-th-TH.js │ │ │ │ ├── bootstrap-table-th-TH.min.js │ │ │ │ ├── bootstrap-table-tr-TR.js │ │ │ │ ├── bootstrap-table-tr-TR.min.js │ │ │ │ ├── bootstrap-table-uk-UA.js │ │ │ │ ├── bootstrap-table-uk-UA.min.js │ │ │ │ ├── bootstrap-table-ur-PK.js │ │ │ │ ├── bootstrap-table-ur-PK.min.js │ │ │ │ ├── bootstrap-table-uz-Latn-UZ.js │ │ │ │ ├── bootstrap-table-uz-Latn-UZ.min.js │ │ │ │ ├── bootstrap-table-vi-VN.js │ │ │ │ ├── bootstrap-table-vi-VN.min.js │ │ │ │ ├── bootstrap-table-zh-CN.js │ │ │ │ ├── bootstrap-table-zh-CN.min.js │ │ │ │ ├── bootstrap-table-zh-TW.js │ │ │ │ └── bootstrap-table-zh-TW.min.js │ │ │ ├── bootstrap │ │ │ ├── css │ │ │ │ ├── bootstrap-theme.css │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ ├── bootstrap.css │ │ │ │ ├── bootstrap.css.map │ │ │ │ ├── bootstrap.min.css │ │ │ │ └── bootstrap.min.css.map │ │ │ ├── fonts │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ └── js │ │ │ │ ├── bootstrap.js │ │ │ │ ├── bootstrap.min.js │ │ │ │ └── npm.js │ │ │ └── images │ │ │ ├── MPBannerBackground.png │ │ │ └── macpatch_logo.png │ └── planb │ │ ├── LICENSE │ │ ├── MOLAuthenticatingURLSession │ │ ├── LICENSE │ │ ├── README.md │ │ └── Source │ │ │ ├── MOLAuthenticatingURLSession.h │ │ │ ├── MOLAuthenticatingURLSession.m │ │ │ ├── MOLDERDecoder.h │ │ │ └── MOLDERDecoder.m │ │ ├── MOLCertificate │ │ ├── LICENSE │ │ ├── README.md │ │ └── Source │ │ │ ├── MOLCertificate.h │ │ │ └── MOLCertificate.m │ │ ├── Preferences │ │ └── gov.llnl.planb.plist │ │ ├── XCBuildData │ │ ├── 63554c19ca1906c6a91eebcbd2ca4bc6-desc.xcbuild │ │ ├── 63554c19ca1906c6a91eebcbd2ca4bc6-manifest.xcbuild │ │ ├── BuildDescriptionCacheIndex-786077373437c8a9ee48ca44666191e4 │ │ ├── bae11416bf656df441d15b5cf31b60e9-desc.xcbuild │ │ ├── bae11416bf656df441d15b5cf31b60e9-manifest.xcbuild │ │ ├── build.db │ │ ├── d195fff8b7623dbf560241121c893bdd-desc.xcbuild │ │ └── d195fff8b7623dbf560241121c893bdd-manifest.xcbuild │ │ ├── gov.llnl.mp.planb.plist │ │ ├── mpPlanB │ │ ├── planb.xcodeproj │ │ ├── contents.xcworkspacedata │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── planb.xcscheme │ │ └── planb │ │ ├── PBCommandController.h │ │ ├── PBCommandController.m │ │ ├── PBLogging.h │ │ ├── PBPackageInstaller.h │ │ ├── PBPackageInstaller.m │ │ ├── main.m │ │ ├── planb-Info.plist │ │ ├── planb.entitlements │ │ └── roots.pem ├── MPAgentUploader │ ├── MPAgentUploader.xcodeproj │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── swiftpm │ │ │ └── Package.resolved │ └── MPAgentUploader │ │ ├── Alamofire-Synchronous.swift │ │ ├── AppDelegate.swift │ │ ├── Assets.xcassets │ │ ├── App.imageset │ │ │ ├── Contents.json │ │ │ ├── mp_3_icon_upload_256.png │ │ │ ├── mp_3_icon_upload_512.png │ │ │ └── mp_3_icon_upload_68.png │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── mp_3_icon_upload_128.png │ │ │ ├── mp_3_icon_upload_256-1.png │ │ │ ├── mp_3_icon_upload_256.png │ │ │ ├── mp_3_icon_upload_512-1.png │ │ │ └── mp_3_icon_upload_512.png │ │ ├── ClearDot.imageset │ │ │ ├── ClearDot-1.png │ │ │ ├── ClearDot.png │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── GreenDot.imageset │ │ │ ├── Contents.json │ │ │ ├── successGreenDot-1.png │ │ │ └── successGreenDot.png │ │ ├── NoIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── NO-1.png │ │ │ └── NO.png │ │ ├── RedDot.imageset │ │ │ ├── Contents.json │ │ │ ├── errorRedDot-1.png │ │ │ └── errorRedDot.png │ │ ├── YesIcon-1.imageset │ │ │ ├── Contents.json │ │ │ ├── YES-1.png │ │ │ └── YES.png │ │ └── YesIcon.imageset │ │ │ ├── Contents.json │ │ │ ├── YES-1.png │ │ │ └── YES.png │ │ ├── AuthViewController.swift │ │ ├── Base.lproj │ │ └── Main.storyboard │ │ ├── Bridging-Header.h │ │ ├── Constants.swift │ │ ├── FileUploader.swift │ │ ├── Frameworks │ │ ├── Off │ │ │ ├── Alamofire.framework │ │ │ │ ├── Alamofire │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Alamofire │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── Alamofire-Swift.h │ │ │ │ │ │ └── Alamofire.h │ │ │ │ │ ├── Modules │ │ │ │ │ │ ├── Alamofire.swiftmodule │ │ │ │ │ │ │ ├── x86_64-apple-macos.swiftdoc │ │ │ │ │ │ │ ├── x86_64-apple-macos.swiftmodule │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ ├── LogKit.framework │ │ │ │ ├── Headers │ │ │ │ ├── LogKit │ │ │ │ ├── Modules │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── LogKit-Swift.h │ │ │ │ │ │ └── LogKit.h │ │ │ │ │ ├── LogKit │ │ │ │ │ ├── Modules │ │ │ │ │ │ ├── LogKit.swiftmodule │ │ │ │ │ │ │ ├── x86_64-apple-macos.swiftdoc │ │ │ │ │ │ │ ├── x86_64-apple-macos.swiftmodule │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ ├── _Swift_4.1.2_LogKit.framework │ │ │ │ ├── Headers │ │ │ │ ├── LogKit │ │ │ │ ├── Modules │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── LogKit-Swift.h │ │ │ │ │ │ └── LogKit.h │ │ │ │ │ ├── LogKit │ │ │ │ │ ├── Modules │ │ │ │ │ │ ├── LogKit.swiftmodule │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ ├── _swift_4.1.2_Alamofire.framework │ │ │ │ ├── Alamofire │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Alamofire │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── Alamofire-Swift.h │ │ │ │ │ │ └── Alamofire.h │ │ │ │ │ ├── Modules │ │ │ │ │ │ ├── Alamofire.swiftmodule │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ ├── _swift_5_Alamofire_v5.framework │ │ │ │ ├── Alamofire │ │ │ │ ├── Headers │ │ │ │ ├── Modules │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── Alamofire │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── Alamofire-Swift.h │ │ │ │ │ │ └── Alamofire.h │ │ │ │ │ ├── Modules │ │ │ │ │ │ ├── Alamofire.swiftmodule │ │ │ │ │ │ │ ├── x86_64-apple-macos.swiftdoc │ │ │ │ │ │ │ ├── x86_64-apple-macos.swiftmodule │ │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ │ └── module.modulemap │ │ │ │ │ ├── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── _CodeSignature │ │ │ │ │ │ └── CodeResources │ │ │ │ │ └── Current │ │ │ └── _swift_5_LogKit.framework │ │ │ │ ├── Headers │ │ │ │ ├── LogKit │ │ │ │ ├── Modules │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ ├── LogKit-Swift.h │ │ │ │ │ └── LogKit.h │ │ │ │ ├── LogKit │ │ │ │ ├── Modules │ │ │ │ │ ├── LogKit.swiftmodule │ │ │ │ │ │ ├── x86_64-apple-macos.swiftdoc │ │ │ │ │ │ ├── x86_64-apple-macos.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ │ └── module.modulemap │ │ │ │ └── Resources │ │ │ │ │ └── Info.plist │ │ │ │ └── Current │ │ ├── SwiftShell.framework │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── Resources │ │ │ ├── SwiftShell │ │ │ └── Versions │ │ │ │ ├── A │ │ │ │ ├── Headers │ │ │ │ │ └── SwiftShell-Swift.h │ │ │ │ ├── Modules │ │ │ │ │ └── SwiftShell.swiftmodule │ │ │ │ │ │ ├── x86_64-apple-macos.swiftdoc │ │ │ │ │ │ ├── x86_64-apple-macos.swiftmodule │ │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ │ └── x86_64.swiftmodule │ │ │ │ ├── Resources │ │ │ │ │ └── Info.plist │ │ │ │ ├── SwiftShell │ │ │ │ └── _CodeSignature │ │ │ │ │ └── CodeResources │ │ │ │ └── Current │ │ └── _SwiftShell.framework_ │ │ │ ├── Headers │ │ │ ├── Modules │ │ │ ├── Resources │ │ │ ├── SwiftShell │ │ │ └── Versions │ │ │ ├── A │ │ │ ├── Headers │ │ │ │ └── SwiftShell-Swift.h │ │ │ ├── Modules │ │ │ │ └── SwiftShell.swiftmodule │ │ │ │ │ ├── x86_64-apple-macos.swiftdoc │ │ │ │ │ ├── x86_64-apple-macos.swiftmodule │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftmodule │ │ │ ├── Resources │ │ │ │ └── Info.plist │ │ │ ├── SwiftShell │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── Current │ │ ├── HeaderView.swift │ │ ├── Info.plist │ │ ├── MPCrypto.h │ │ ├── MPCrypto.m │ │ ├── Preferences │ │ ├── Preferences.storyboard │ │ ├── PreferencesGeneralViewController.swift │ │ ├── PreferencesViewController.swift │ │ └── PreferencesWindowController.swift │ │ ├── Spawn.swift │ │ ├── SwiftShell │ │ ├── Bash.swift │ │ ├── Command.swift │ │ ├── Context.swift │ │ ├── FileHandle.swift │ │ ├── Files.swift │ │ ├── General │ │ │ └── Array.swift │ │ ├── Process.swift │ │ ├── Stream │ │ │ ├── Lazy-split.swift │ │ │ └── Stream.swift │ │ └── String.swift │ │ ├── ViewController.swift │ │ └── _SwiftShell_ │ │ ├── Bash.swift │ │ ├── Command.swift │ │ ├── Context.swift │ │ ├── FileHandle.swift │ │ ├── Files.swift │ │ ├── General │ │ └── Array.swift │ │ ├── Stream │ │ ├── Lazy-split.swift │ │ └── Stream.swift │ │ └── String.swift ├── MacPatch │ ├── MPAgent │ │ ├── MPAgent.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── MPAgent.xcscheme │ │ └── MPAgent │ │ │ ├── AVSoftware.h │ │ │ ├── AVSoftware.m │ │ │ ├── AgentController.h │ │ │ ├── AgentController.m │ │ │ ├── AgentScanAndUpdateOperation.h │ │ │ ├── AgentScanAndUpdateOperation.m │ │ │ ├── AntiVirus.h │ │ │ ├── AntiVirus.m │ │ │ ├── AppStoreOperation.h │ │ │ ├── AppStoreOperation.m │ │ │ ├── CheckIn.h │ │ │ ├── CheckIn.m │ │ │ ├── ClientCheckInOperation.h │ │ │ ├── ClientCheckInOperation.m │ │ │ ├── Inventory │ │ │ ├── BatteryInfo.h │ │ │ ├── BatteryInfo.m │ │ │ ├── CHDisk.h │ │ │ ├── CHDisk.m │ │ │ ├── CHDiskInfo.h │ │ │ ├── CHDiskInfo.m │ │ │ ├── CKSoftwareProduct+ASProduct.h │ │ │ ├── CKSoftwareProduct+ASProduct.m │ │ │ ├── InventoryPlugin.h │ │ │ ├── LocalAdminAccounts.h │ │ │ ├── LocalAdminAccounts.m │ │ │ ├── MPAppStore.h │ │ │ ├── MPAppStore.m │ │ │ ├── MPDirectoryServices.h │ │ │ ├── MPDirectoryServices.m │ │ │ ├── MPFileVaultInfo.h │ │ │ ├── MPFileVaultInfo.m │ │ │ ├── MPFirmware.h │ │ │ ├── MPFirmware.m │ │ │ ├── MPInv.h │ │ │ ├── MPInv.m │ │ │ ├── MPServerEntry.h │ │ │ ├── MPServerEntry.m │ │ │ ├── MPUsersAndGroups.h │ │ │ ├── MPUsersAndGroups.m │ │ │ ├── MacAppStoreDataItem.h │ │ │ ├── MacAppStoreDataItem.m │ │ │ ├── NSDirectoryServices.h │ │ │ ├── NSDirectoryServices.m │ │ │ ├── NSMetadataQuery+Synchronous.h │ │ │ ├── NSMetadataQuery+Synchronous.m │ │ │ ├── PowerProfile.h │ │ │ ├── PowerProfile.m │ │ │ ├── SPSmartCard.h │ │ │ ├── SPSmartCard.m │ │ │ ├── SmartCardReaderList.h │ │ │ ├── SmartCardReaderList.m │ │ │ ├── SysInfoCacheGen.h │ │ │ └── SysInfoCacheGen.m │ │ │ ├── InventoryOperation.h │ │ │ ├── InventoryOperation.m │ │ │ ├── InventoryPlugin.h │ │ │ ├── MPAgent-Info.plist │ │ │ ├── MPAgent-Prefix.pch │ │ │ ├── MPAgent.1 │ │ │ ├── MPAgent.entitlements │ │ │ ├── MPAgent.h │ │ │ ├── MPAgent.m │ │ │ ├── MPAgentRegister.h │ │ │ ├── MPAgentRegister.m │ │ │ ├── MPAgentUpdater.h │ │ │ ├── MPAgentUpdater.m │ │ │ ├── MPInventoryPlugin.h │ │ │ ├── MPInventoryPlugin.m │ │ │ ├── MPOSUpgrade.h │ │ │ ├── MPOSUpgrade.m │ │ │ ├── MPOperation.h │ │ │ ├── MPOperation.m │ │ │ ├── MPProvision.h │ │ │ ├── MPProvision.m │ │ │ ├── MPSWDistTaskOperation.h │ │ │ ├── MPSWDistTaskOperation.m │ │ │ ├── MPTaskData.h │ │ │ ├── MPTaskData.m │ │ │ ├── MPTaskValidate.h │ │ │ ├── MPTaskValidate.m │ │ │ ├── MPTasks.h │ │ │ ├── MPTasks.m │ │ │ ├── PatchScanAndUpdateOperation.h │ │ │ ├── PatchScanAndUpdateOperation.m │ │ │ ├── PostFailedWSRequests.h │ │ │ ├── PostFailedWSRequests.m │ │ │ ├── PrivateHeaders │ │ │ ├── CommerceKit │ │ │ │ ├── CKAccountStore.h │ │ │ │ ├── CKDownloadQueue.h │ │ │ │ ├── CKPurchaseController.h │ │ │ │ ├── CKServiceInterface.h │ │ │ │ ├── CKSoftwareMap.h │ │ │ │ ├── CKUpdateController.h │ │ │ │ └── ISStoreURLOperationDelegate-Protocol.h │ │ │ └── StoreFoundation │ │ │ │ ├── CKSoftwareProduct.h │ │ │ │ ├── CKUpdate.h │ │ │ │ ├── ISAccountService-Protocol.h │ │ │ │ ├── ISAuthenticationContext.h │ │ │ │ ├── ISOperationDelegate-Protocol.h │ │ │ │ ├── ISServiceProxy.h │ │ │ │ ├── ISServiceRemoteObject-Protocol.h │ │ │ │ ├── ISStoreAccount.h │ │ │ │ ├── ISStoreClient.h │ │ │ │ ├── ISURLOperationDelegate-Protocol.h │ │ │ │ ├── SSDownload.h │ │ │ │ ├── SSDownloadMetadata.h │ │ │ │ ├── SSDownloadPhase.h │ │ │ │ ├── SSDownloadStatus.h │ │ │ │ ├── SSPurchase.h │ │ │ │ └── SSPurchaseResponse.h │ │ │ ├── Profiles.h │ │ │ ├── Profiles.m │ │ │ ├── Software.h │ │ │ ├── Software.m │ │ │ ├── SoftwareController.h │ │ │ ├── SoftwareController.m │ │ │ └── main.m │ ├── MPClientStatus │ │ ├── MPClientStatus.xcodeproj │ │ │ └── project.pbxproj │ │ └── MPClientStatus │ │ │ ├── AppLaunchObject.h │ │ │ ├── AppLaunchObject.m │ │ │ ├── CHMenuViewController.h │ │ │ ├── CHMenuViewController.m │ │ │ ├── CHMenuViewController.xib │ │ │ ├── ClientStatusMainMenu.xib │ │ │ ├── ClietStatusMedia.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── mp_3_icon_clientstatus_128.png │ │ │ │ ├── mp_3_icon_clientstatus_256-1.png │ │ │ │ ├── mp_3_icon_clientstatus_256.png │ │ │ │ ├── mp_3_icon_clientstatus_512-1.png │ │ │ │ ├── mp_3_icon_clientstatus_512.png │ │ │ │ └── mp_3_icon_clientstatus_64.png │ │ │ ├── Contents.json │ │ │ ├── MacPatchIcon.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mp_3_icon_128-1.png │ │ │ │ ├── mp_3_icon_256.png │ │ │ │ └── mp_3_icon_512.png │ │ │ ├── appImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mp_3_icon_clientstatus_128.png │ │ │ │ ├── mp_3_icon_clientstatus_256.png │ │ │ │ └── mp_3_icon_clientstatus_64.png │ │ │ ├── emptyImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── empty-1.png │ │ │ │ └── empty.png │ │ │ ├── message.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── chat-2.png │ │ │ │ └── chat.png │ │ │ ├── mp3Image.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mp3Alt.png │ │ │ │ └── mp_3_icon_20.png │ │ │ ├── mp3ImageAlert.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon_dark_alert.png │ │ │ │ └── mp_3_icon_20_alert.png │ │ │ └── rebootImage.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── RestartReq.png │ │ │ ├── CriticalWindow.h │ │ │ ├── CriticalWindow.m │ │ │ ├── EventToSend.c │ │ │ ├── EventToSend.h │ │ │ ├── MPAppUsage.h │ │ │ ├── MPAppUsage.m │ │ │ ├── MPBaseRoundIcon.png │ │ │ ├── MPClientStatus-Info.plist │ │ │ ├── MPClientStatus-Prefix.pch │ │ │ ├── MPClientStatus.entitlements │ │ │ ├── MPClientStatus.icns │ │ │ ├── MPClientStatusAppDelegate.h │ │ │ ├── MPClientStatusAppDelegate.m │ │ │ ├── MPDiagCollector.sh │ │ │ ├── MPGradientView.h │ │ │ ├── MPGradientView.m │ │ │ ├── MPHelperProtocol.h │ │ │ ├── MPStatusProtocol.h │ │ │ ├── MPWorkerProtocol.h │ │ │ ├── Notes.txt │ │ │ ├── ProvisionHost.h │ │ │ ├── ProvisionHost.m │ │ │ ├── Provisioning.h │ │ │ ├── Provisioning.m │ │ │ ├── Provisioning.xib │ │ │ ├── ProvisioningAlt.h │ │ │ ├── ProvisioningAlt.m │ │ │ ├── ProvisioningAlt.xib │ │ │ ├── RestartReq.png │ │ │ ├── Survey.h │ │ │ ├── Survey.m │ │ │ ├── Survey.xib │ │ │ ├── VDKQueue.h │ │ │ ├── VDKQueue.m │ │ │ ├── empty.png │ │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── html │ │ │ ├── banner.html │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ ├── images │ │ │ │ ├── MPSlide_3.6.1-1.png │ │ │ │ ├── MPSlide_3.6.1-2.png │ │ │ │ ├── livit_logo.png │ │ │ │ └── v3.3 │ │ │ │ │ ├── MPSlide1 copy.png │ │ │ │ │ ├── MPSlide1.png │ │ │ │ │ ├── MPSlide2.png │ │ │ │ │ ├── MPSlide2a.png │ │ │ │ │ └── MPSlide2b.png │ │ │ ├── index.html │ │ │ └── js │ │ │ │ └── jquery.min.js │ │ │ ├── icon_dark_alert.png │ │ │ ├── main.m │ │ │ ├── mp3Alt.png │ │ │ ├── mp3_icon_dark.acorn │ │ │ ├── mp_3_icon_20.png │ │ │ ├── mp_3_icon_20_alert.png │ │ │ ├── provision │ │ │ ├── blank.html │ │ │ ├── bootstrap-table │ │ │ │ ├── bootstrap-table-locale-all.js │ │ │ │ ├── bootstrap-table-locale-all.min.js │ │ │ │ ├── bootstrap-table.css │ │ │ │ ├── bootstrap-table.js │ │ │ │ ├── bootstrap-table.min.css │ │ │ │ ├── bootstrap-table.min.js │ │ │ │ ├── extensions │ │ │ │ │ ├── accent-neutralise │ │ │ │ │ │ ├── bootstrap-table-accent-neutralise.js │ │ │ │ │ │ └── bootstrap-table-accent-neutralise.min.js │ │ │ │ │ ├── angular │ │ │ │ │ │ ├── bootstrap-table-angular.js │ │ │ │ │ │ └── bootstrap-table-angular.min.js │ │ │ │ │ ├── auto-refresh │ │ │ │ │ │ ├── bootstrap-table-auto-refresh.css │ │ │ │ │ │ ├── bootstrap-table-auto-refresh.js │ │ │ │ │ │ └── bootstrap-table-auto-refresh.min.js │ │ │ │ │ ├── click-edit-row │ │ │ │ │ │ ├── bootstrap-table-click-edit-row.css │ │ │ │ │ │ ├── bootstrap-table-click-edit-row.js │ │ │ │ │ │ └── bootstrap-table-click-edit-row.min.js │ │ │ │ │ ├── cookie │ │ │ │ │ │ ├── bootstrap-table-cookie.js │ │ │ │ │ │ └── bootstrap-table-cookie.min.js │ │ │ │ │ ├── copy-rows │ │ │ │ │ │ ├── bootstrap-table-copy-rows.js │ │ │ │ │ │ └── bootstrap-table-copy-rows.min.js │ │ │ │ │ ├── editable │ │ │ │ │ │ ├── bootstrap-table-editable.js │ │ │ │ │ │ └── bootstrap-table-editable.min.js │ │ │ │ │ ├── export │ │ │ │ │ │ ├── bootstrap-table-export.js │ │ │ │ │ │ └── bootstrap-table-export.min.js │ │ │ │ │ ├── filter-control │ │ │ │ │ │ ├── bootstrap-table-filter-control.css │ │ │ │ │ │ ├── bootstrap-table-filter-control.js │ │ │ │ │ │ └── bootstrap-table-filter-control.min.js │ │ │ │ │ ├── filter │ │ │ │ │ │ ├── bootstrap-table-filter.js │ │ │ │ │ │ └── bootstrap-table-filter.min.js │ │ │ │ │ ├── flat-json │ │ │ │ │ │ ├── bootstrap-table-flat-json.js │ │ │ │ │ │ └── bootstrap-table-flat-json.min.js │ │ │ │ │ ├── group-by-v2 │ │ │ │ │ │ ├── bootstrap-table-group-by.css │ │ │ │ │ │ ├── bootstrap-table-group-by.js │ │ │ │ │ │ └── bootstrap-table-group-by.min.js │ │ │ │ │ ├── group-by │ │ │ │ │ │ ├── bootstrap-table-group-by.css │ │ │ │ │ │ ├── bootstrap-table-group-by.js │ │ │ │ │ │ └── bootstrap-table-group-by.min.js │ │ │ │ │ ├── i18n-enhance │ │ │ │ │ │ ├── bootstrap-table-i18n-enhance.js │ │ │ │ │ │ └── bootstrap-table-i18n-enhance.min.js │ │ │ │ │ ├── key-events │ │ │ │ │ │ ├── bootstrap-table-key-events.js │ │ │ │ │ │ └── bootstrap-table-key-events.min.js │ │ │ │ │ ├── mobile │ │ │ │ │ │ ├── bootstrap-table-mobile.js │ │ │ │ │ │ └── bootstrap-table-mobile.min.js │ │ │ │ │ ├── multi-column-toggle │ │ │ │ │ │ ├── bootstrap-table-multi-toggle.js │ │ │ │ │ │ └── bootstrap-table-multi-toggle.min.js │ │ │ │ │ ├── multiple-search │ │ │ │ │ │ ├── bootstrap-table-multiple-search.js │ │ │ │ │ │ └── bootstrap-table-multiple-search.min.js │ │ │ │ │ ├── multiple-selection-row │ │ │ │ │ │ ├── bootstrap-table-multiple-selection-row.css │ │ │ │ │ │ ├── bootstrap-table-multiple-selection-row.js │ │ │ │ │ │ └── bootstrap-table-multiple-selection-row.min.js │ │ │ │ │ ├── multiple-sort │ │ │ │ │ │ ├── bootstrap-table-multiple-sort.js │ │ │ │ │ │ └── bootstrap-table-multiple-sort.min.js │ │ │ │ │ ├── natural-sorting │ │ │ │ │ │ ├── bootstrap-table-natural-sorting.js │ │ │ │ │ │ └── bootstrap-table-natural-sorting.min.js │ │ │ │ │ ├── print │ │ │ │ │ │ ├── bootstrap-table-print.js │ │ │ │ │ │ └── bootstrap-table-print.min.js │ │ │ │ │ ├── reorder-columns │ │ │ │ │ │ ├── bootstrap-table-reorder-columns.js │ │ │ │ │ │ └── bootstrap-table-reorder-columns.min.js │ │ │ │ │ ├── reorder-rows │ │ │ │ │ │ ├── bootstrap-table-reorder-rows.css │ │ │ │ │ │ ├── bootstrap-table-reorder-rows.js │ │ │ │ │ │ └── bootstrap-table-reorder-rows.min.js │ │ │ │ │ ├── resizable │ │ │ │ │ │ ├── bootstrap-table-resizable.js │ │ │ │ │ │ └── bootstrap-table-resizable.min.js │ │ │ │ │ ├── select2-filter │ │ │ │ │ │ ├── bootstrap-table-select2-filter.js │ │ │ │ │ │ └── bootstrap-table-select2-filter.min.js │ │ │ │ │ ├── sticky-header │ │ │ │ │ │ ├── bootstrap-table-sticky-header.css │ │ │ │ │ │ ├── bootstrap-table-sticky-header.js │ │ │ │ │ │ └── bootstrap-table-sticky-header.min.js │ │ │ │ │ ├── toolbar │ │ │ │ │ │ ├── bootstrap-table-toolbar.js │ │ │ │ │ │ └── bootstrap-table-toolbar.min.js │ │ │ │ │ └── tree-column │ │ │ │ │ │ ├── bootstrap-table-tree-column.css │ │ │ │ │ │ ├── bootstrap-table-tree-column.js │ │ │ │ │ │ └── bootstrap-table-tree-column.min.js │ │ │ │ ├── jquery.min.js │ │ │ │ └── locale │ │ │ │ │ ├── bootstrap-table-af-ZA.js │ │ │ │ │ ├── bootstrap-table-af-ZA.min.js │ │ │ │ │ ├── bootstrap-table-ar-SA.js │ │ │ │ │ ├── bootstrap-table-ar-SA.min.js │ │ │ │ │ ├── bootstrap-table-ca-ES.js │ │ │ │ │ ├── bootstrap-table-ca-ES.min.js │ │ │ │ │ ├── bootstrap-table-cs-CZ.js │ │ │ │ │ ├── bootstrap-table-cs-CZ.min.js │ │ │ │ │ ├── bootstrap-table-da-DK.js │ │ │ │ │ ├── bootstrap-table-da-DK.min.js │ │ │ │ │ ├── bootstrap-table-de-DE.js │ │ │ │ │ ├── bootstrap-table-de-DE.min.js │ │ │ │ │ ├── bootstrap-table-el-GR.js │ │ │ │ │ ├── bootstrap-table-el-GR.min.js │ │ │ │ │ ├── bootstrap-table-en-US.js │ │ │ │ │ ├── bootstrap-table-en-US.min.js │ │ │ │ │ ├── bootstrap-table-es-AR.js │ │ │ │ │ ├── bootstrap-table-es-AR.min.js │ │ │ │ │ ├── bootstrap-table-es-CL.js │ │ │ │ │ ├── bootstrap-table-es-CL.min.js │ │ │ │ │ ├── bootstrap-table-es-CR.js │ │ │ │ │ ├── bootstrap-table-es-CR.min.js │ │ │ │ │ ├── bootstrap-table-es-ES.js │ │ │ │ │ ├── bootstrap-table-es-ES.min.js │ │ │ │ │ ├── bootstrap-table-es-MX.js │ │ │ │ │ ├── bootstrap-table-es-MX.min.js │ │ │ │ │ ├── bootstrap-table-es-NI.js │ │ │ │ │ ├── bootstrap-table-es-NI.min.js │ │ │ │ │ ├── bootstrap-table-es-SP.js │ │ │ │ │ ├── bootstrap-table-es-SP.min.js │ │ │ │ │ ├── bootstrap-table-et-EE.js │ │ │ │ │ ├── bootstrap-table-et-EE.min.js │ │ │ │ │ ├── bootstrap-table-fa-IR.js │ │ │ │ │ ├── bootstrap-table-fa-IR.min.js │ │ │ │ │ ├── bootstrap-table-fr-BE.js │ │ │ │ │ ├── bootstrap-table-fr-BE.min.js │ │ │ │ │ ├── bootstrap-table-fr-FR.js │ │ │ │ │ ├── bootstrap-table-fr-FR.min.js │ │ │ │ │ ├── bootstrap-table-he-IL.js │ │ │ │ │ ├── bootstrap-table-he-IL.min.js │ │ │ │ │ ├── bootstrap-table-hr-HR.js │ │ │ │ │ ├── bootstrap-table-hr-HR.min.js │ │ │ │ │ ├── bootstrap-table-hu-HU.js │ │ │ │ │ ├── bootstrap-table-hu-HU.min.js │ │ │ │ │ ├── bootstrap-table-id-ID.js │ │ │ │ │ ├── bootstrap-table-id-ID.min.js │ │ │ │ │ ├── bootstrap-table-it-IT.js │ │ │ │ │ ├── bootstrap-table-it-IT.min.js │ │ │ │ │ ├── bootstrap-table-ja-JP.js │ │ │ │ │ ├── bootstrap-table-ja-JP.min.js │ │ │ │ │ ├── bootstrap-table-ka-GE.js │ │ │ │ │ ├── bootstrap-table-ka-GE.min.js │ │ │ │ │ ├── bootstrap-table-ko-KR.js │ │ │ │ │ ├── bootstrap-table-ko-KR.min.js │ │ │ │ │ ├── bootstrap-table-ms-MY.js │ │ │ │ │ ├── bootstrap-table-ms-MY.min.js │ │ │ │ │ ├── bootstrap-table-nb-NO.js │ │ │ │ │ ├── bootstrap-table-nb-NO.min.js │ │ │ │ │ ├── bootstrap-table-nl-NL.js │ │ │ │ │ ├── bootstrap-table-nl-NL.min.js │ │ │ │ │ ├── bootstrap-table-pl-PL.js │ │ │ │ │ ├── bootstrap-table-pl-PL.min.js │ │ │ │ │ ├── bootstrap-table-pt-BR.js │ │ │ │ │ ├── bootstrap-table-pt-BR.min.js │ │ │ │ │ ├── bootstrap-table-pt-PT.js │ │ │ │ │ ├── bootstrap-table-pt-PT.min.js │ │ │ │ │ ├── bootstrap-table-ro-RO.js │ │ │ │ │ ├── bootstrap-table-ro-RO.min.js │ │ │ │ │ ├── bootstrap-table-ru-RU.js │ │ │ │ │ ├── bootstrap-table-ru-RU.min.js │ │ │ │ │ ├── bootstrap-table-sk-SK.js │ │ │ │ │ ├── bootstrap-table-sk-SK.min.js │ │ │ │ │ ├── bootstrap-table-sv-SE.js │ │ │ │ │ ├── bootstrap-table-sv-SE.min.js │ │ │ │ │ ├── bootstrap-table-th-TH.js │ │ │ │ │ ├── bootstrap-table-th-TH.min.js │ │ │ │ │ ├── bootstrap-table-tr-TR.js │ │ │ │ │ ├── bootstrap-table-tr-TR.min.js │ │ │ │ │ ├── bootstrap-table-uk-UA.js │ │ │ │ │ ├── bootstrap-table-uk-UA.min.js │ │ │ │ │ ├── bootstrap-table-ur-PK.js │ │ │ │ │ ├── bootstrap-table-ur-PK.min.js │ │ │ │ │ ├── bootstrap-table-uz-Latn-UZ.js │ │ │ │ │ ├── bootstrap-table-uz-Latn-UZ.min.js │ │ │ │ │ ├── bootstrap-table-vi-VN.js │ │ │ │ │ ├── bootstrap-table-vi-VN.min.js │ │ │ │ │ ├── bootstrap-table-zh-CN.js │ │ │ │ │ ├── bootstrap-table-zh-CN.min.js │ │ │ │ │ ├── bootstrap-table-zh-TW.js │ │ │ │ │ └── bootstrap-table-zh-TW.min.js │ │ │ ├── bootstrap │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ ├── fonts │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ └── js │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ └── npm.js │ │ │ ├── data.html │ │ │ ├── fields.html │ │ │ └── images │ │ │ │ └── macpatch_logo.png │ │ │ └── warn.png │ ├── MPLibrary │ │ ├── AgentData.h │ │ ├── AgentData.m │ │ ├── ClientDB │ │ │ ├── MPClientDB.h │ │ │ ├── MPClientDB.m │ │ │ └── Model │ │ │ │ ├── History.h │ │ │ │ ├── History.m │ │ │ │ ├── InstalledSoftware.h │ │ │ │ ├── InstalledSoftware.m │ │ │ │ ├── RequiredPatch.h │ │ │ │ └── RequiredPatch.m │ │ ├── CocoaSecurity │ │ │ ├── Base64.h │ │ │ ├── Base64.m │ │ │ ├── CocoaSecurity.h │ │ │ └── CocoaSecurity.m │ │ ├── ConfigProfile.h │ │ ├── ConfigProfile.m │ │ ├── DBHistory.h │ │ ├── DBHistory.m │ │ ├── DBInstalledSoftware.h │ │ ├── DBInstalledSoftware.m │ │ ├── DBModels.h │ │ ├── DBRequiredPatches.h │ │ ├── DBRequiredPatches.m │ │ ├── DHCachedPasswordUtil.h │ │ ├── DHCachedPasswordUtil.m │ │ ├── MPClientDatabase.h │ │ ├── MPClientDatabase.m │ │ ├── MPConfigProfiles.h │ │ ├── MPConfigProfiles.m │ │ ├── MPDownloadManager.h │ │ ├── MPDownloadManager.m │ │ ├── MPFileUtils.h │ │ ├── MPFileUtils.m │ │ ├── MPFileVaultInfo.h │ │ ├── MPFileVaultInfo.m │ │ ├── MPLibrary.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── MPLibrary.xcscheme │ │ ├── MPLibrary │ │ │ ├── Backup │ │ │ │ ├── MPNSTask.h │ │ │ │ └── MPNSTask.m │ │ │ ├── Base64 │ │ │ │ ├── NSString+Base64.h │ │ │ │ └── NSString+Base64.m │ │ │ ├── Constants.h │ │ │ ├── Constants.m │ │ │ ├── Crypto │ │ │ │ ├── MPCrypto.h │ │ │ │ └── MPCrypto.m │ │ │ ├── FMDB │ │ │ │ ├── FMDB.h │ │ │ │ ├── FMDatabase.h │ │ │ │ ├── FMDatabase.m │ │ │ │ ├── FMDatabaseAdditions.h │ │ │ │ ├── FMDatabaseAdditions.m │ │ │ │ ├── FMDatabasePool.h │ │ │ │ ├── FMDatabasePool.m │ │ │ │ ├── FMDatabaseQueue.h │ │ │ │ ├── FMDatabaseQueue.m │ │ │ │ ├── FMResultSet.h │ │ │ │ └── FMResultSet.m │ │ │ ├── FMDBx │ │ │ │ ├── FMDBx.h │ │ │ │ ├── FMXColumnMap.h │ │ │ │ ├── FMXColumnMap.m │ │ │ │ ├── FMXCsvTable.h │ │ │ │ ├── FMXCsvTable.m │ │ │ │ ├── FMXDatabaseConfiguration.h │ │ │ │ ├── FMXDatabaseConfiguration.m │ │ │ │ ├── FMXDatabaseManager.h │ │ │ │ ├── FMXDatabaseManager.m │ │ │ │ ├── FMXDatabaseMigration.h │ │ │ │ ├── FMXDatabaseMigration.m │ │ │ │ ├── FMXHelpers.h │ │ │ │ ├── FMXHelpers.m │ │ │ │ ├── FMXModel.h │ │ │ │ ├── FMXModel.m │ │ │ │ ├── FMXQuery.h │ │ │ │ ├── FMXQuery.m │ │ │ │ ├── FMXTableMap.h │ │ │ │ └── FMXTableMap.m │ │ │ ├── Helpers │ │ │ │ ├── NSDate+MPHelper.h │ │ │ │ ├── NSDate+MPHelper.m │ │ │ │ ├── NSDictionary+Helper.h │ │ │ │ ├── NSDictionary+Helper.m │ │ │ │ ├── NSFileHandle-Helper.h │ │ │ │ ├── NSFileHandle-Helper.m │ │ │ │ ├── NSFileManager+DirectoryLocations.h │ │ │ │ ├── NSFileManager+DirectoryLocations.m │ │ │ │ ├── NSFileManager+Helper.h │ │ │ │ ├── NSFileManager+Helper.m │ │ │ │ ├── NSMutableDictionary+Helper.h │ │ │ │ ├── NSMutableDictionary+Helper.m │ │ │ │ ├── NSString+Hash.h │ │ │ │ ├── NSString+Hash.m │ │ │ │ ├── NSString+Helper.h │ │ │ │ └── NSString+Helper.m │ │ │ ├── InventoryPlugin.h │ │ │ ├── Logging │ │ │ │ ├── LCLLogFileConfig.h │ │ │ │ ├── LibComponentLogging-Core │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lcl.h │ │ │ │ │ ├── lcl.m │ │ │ │ │ ├── lcl_config_components.template.h │ │ │ │ │ ├── lcl_config_extensions.template.h │ │ │ │ │ └── lcl_config_logger.template.h │ │ │ │ ├── LibComponentLogging-LogFile │ │ │ │ │ ├── LCLLogFile.h │ │ │ │ │ ├── LCLLogFile.m │ │ │ │ │ ├── LCLLogFileConfig.template.h │ │ │ │ │ ├── README.md │ │ │ │ │ └── lcl_config_logger.h │ │ │ │ ├── LibComponentLogging-qlog │ │ │ │ │ ├── README.md │ │ │ │ │ └── qlog.h │ │ │ │ ├── lcl_config_components.h │ │ │ │ ├── lcl_config_extensions.h │ │ │ │ └── lcl_config_logger.h │ │ │ ├── MPClientInfo.h │ │ │ ├── MPClientInfo.m │ │ │ ├── MPClientKey.h │ │ │ ├── MPClientKey.m │ │ │ ├── MPCodeSign.h │ │ │ ├── MPCodeSign.m │ │ │ ├── MPDate.h │ │ │ ├── MPDate.m │ │ │ ├── MPDefaults.h │ │ │ ├── MPDefaults.m │ │ │ ├── MPDiskUtil.h │ │ │ ├── MPDiskUtil.m │ │ │ ├── MPHTTPRequest.h │ │ │ ├── MPHTTPRequest.m │ │ │ ├── MPKeyItem.h │ │ │ ├── MPKeyItem.m │ │ │ ├── MPKeychain.h │ │ │ ├── MPKeychain.m │ │ │ ├── MPLibrary-Prefix.pch │ │ │ ├── MPLog.h │ │ │ ├── MPLog.m │ │ │ ├── MPNSTask.h │ │ │ ├── MPNSTask.m │ │ │ ├── MPNetworkUtils.h │ │ │ ├── MPNetworkUtils.m │ │ │ ├── MPPatch+Scanner │ │ │ │ ├── MPASUSCatalogs.h │ │ │ │ ├── MPASUSCatalogs.m │ │ │ │ ├── MPApplePatch.h │ │ │ │ ├── MPApplePatch.m │ │ │ │ ├── MPAsus.h │ │ │ │ ├── MPAsus.m │ │ │ │ ├── MPBundle.h │ │ │ │ ├── MPBundle.m │ │ │ │ ├── MPCustomPatch.h │ │ │ │ ├── MPCustomPatch.m │ │ │ │ ├── MPFileCheck.h │ │ │ │ ├── MPFileCheck.m │ │ │ │ ├── MPInstaller.h │ │ │ │ ├── MPInstaller.m │ │ │ │ ├── MPOSCheck.h │ │ │ │ ├── MPOSCheck.m │ │ │ │ ├── MPPatchScan.h │ │ │ │ ├── MPPatchScan.m │ │ │ │ ├── MPScript.h │ │ │ │ └── MPScript.m │ │ │ ├── MPPython.h │ │ │ ├── MPPython.m │ │ │ ├── MPRESTfull.h │ │ │ ├── MPRESTfull.m │ │ │ ├── MPRemoteFingerprint.h │ │ │ ├── MPRemoteFingerprint.m │ │ │ ├── MPSWTasks.h │ │ │ ├── MPSWTasks.m │ │ │ ├── MPServerPing.h │ │ │ ├── MPServerPing.m │ │ │ ├── MPSettings.h │ │ │ ├── MPSettings.m │ │ │ ├── MPSettings │ │ │ │ └── Model │ │ │ │ │ ├── Agent.h │ │ │ │ │ ├── Agent.m │ │ │ │ │ ├── Server.h │ │ │ │ │ ├── Server.m │ │ │ │ │ ├── Suserver.h │ │ │ │ │ ├── Suserver.m │ │ │ │ │ ├── Task.h │ │ │ │ │ └── Task.m │ │ │ ├── MPSimpleKeychain.h │ │ │ ├── MPSimpleKeychain.m │ │ │ ├── MPSystemInfo.h │ │ │ ├── MPSystemInfo.m │ │ │ ├── MPWSResult.h │ │ │ ├── MPWSResult.m │ │ │ ├── MacPatch.h │ │ │ ├── MacPatch.m │ │ │ ├── NSData+Base64.h │ │ │ ├── NSData+Base64.m │ │ │ ├── NSData+Base64.m.orig │ │ │ ├── NSDate-Category │ │ │ │ ├── NSDate+Helper.h │ │ │ │ └── NSDate+Helper.m │ │ │ ├── RegexKitLite │ │ │ │ ├── RegexKitLite.h │ │ │ │ └── RegexKitLite.m │ │ │ ├── STHTTPRequest │ │ │ │ ├── STHTTPRequest.h │ │ │ │ └── STHTTPRequest.m │ │ │ └── WebServices │ │ │ │ ├── MPDataMgr.h │ │ │ │ ├── MPDataMgr.m │ │ │ │ ├── MPFailedRequests.h │ │ │ │ ├── MPFailedRequests.m │ │ │ │ ├── MPWebServices.h │ │ │ │ └── MPWebServices.m │ │ ├── MPPassItem.h │ │ ├── MPPassItem.m │ │ ├── MPPatching.h │ │ ├── MPPatching.m │ │ ├── MPSoftware.h │ │ ├── MPSoftware.m │ │ └── UAObfuscatedString │ │ │ ├── UAObfuscatedString.h │ │ │ └── UAObfuscatedString.m │ ├── MPLoginAgent │ │ └── MPLoginAgent │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── mp_3_icon_logout-1.png │ │ │ │ ├── mp_3_icon_logout-2.png │ │ │ │ ├── mp_3_icon_logout_128-1.png │ │ │ │ ├── mp_3_icon_logout_128-2.png │ │ │ │ ├── mp_3_icon_logout_128-3.png │ │ │ │ ├── mp_3_icon_logout_128-4.png │ │ │ │ ├── mp_3_icon_logout_16-1.png │ │ │ │ ├── mp_3_icon_logout_512-1.png │ │ │ │ └── mp_3_icon_logout_512.png │ │ │ ├── Contents.json │ │ │ ├── MPIcon96.imageset │ │ │ │ ├── Contents.json │ │ │ │ └── mp_icon_96.png │ │ │ └── MPScanAndPatch.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── mp_3_icon-1.png │ │ │ │ ├── mp_3_icon-2.png │ │ │ │ └── mp_3_icon-7.png │ │ │ ├── Base.lproj │ │ │ └── MainMenu.xib │ │ │ ├── Info.plist │ │ │ ├── InstallAppleUpdate.h │ │ │ ├── InstallAppleUpdate.m │ │ │ ├── InstallPackage.h │ │ │ ├── InstallPackage.m │ │ │ ├── MPAuthView.h │ │ │ ├── MPAuthView.m │ │ │ ├── MPAuthViewMin.h │ │ │ ├── MPAuthViewMin.m │ │ │ ├── MPHelperProtocol.h │ │ │ ├── MPLoginAgent-Bridging-Header.h │ │ │ ├── MPLoginAgent_Prefix.pch │ │ │ ├── MPPanel.h │ │ │ ├── MPPanel.m │ │ │ ├── MPScanner.h │ │ │ ├── MPScanner.m │ │ │ ├── MinScanAndPatchVC.h │ │ │ ├── MinScanAndPatchVC.m │ │ │ ├── MinScanAndPatchVC.xib │ │ │ ├── Misc │ │ │ └── gov.llnl.MPLoginAgent.plist │ │ │ ├── en.lproj │ │ │ └── MainMenu.strings │ │ │ ├── images │ │ │ ├── AppleLogo.png │ │ │ ├── AppleLogo@2x.png │ │ │ ├── Empty.png │ │ │ ├── Fail.png │ │ │ ├── Logout.png │ │ │ ├── MPBaseRoundIcon.png │ │ │ ├── MPLogo_64x64.png │ │ │ ├── Running.png │ │ │ ├── Success.png │ │ │ └── Warning.png │ │ │ └── main.m │ ├── MPUpdater │ │ ├── MPUpdater.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── MPUpdater.xcscheme │ │ └── MPUpdater │ │ │ ├── MPUpdater.entitlements │ │ │ ├── MPUpdaterController.h │ │ │ ├── MPUpdaterController.m │ │ │ ├── Supporting_Files │ │ │ ├── MPUpdater-Info.plist │ │ │ └── MPUpdater-Prefix.pch │ │ │ └── main.m │ ├── MacPatch.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcshareddata │ │ │ ├── IDEWorkspaceChecks.plist │ │ │ └── WorkspaceSettings.xcsettings │ ├── MacPatch │ │ ├── MacPatch.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ ├── MacPatch.xcscheme │ │ │ │ └── MacPatchTile.xcscheme │ │ ├── MacPatch │ │ │ ├── AgentVC.h │ │ │ ├── AgentVC.m │ │ │ ├── AgentVC.xib │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── Base.lproj │ │ │ │ └── MainMenu.xib │ │ │ ├── CollectionItem.h │ │ │ ├── CollectionItem.m │ │ │ ├── CollectionItem.xib │ │ │ ├── DBHistory.h │ │ │ ├── DBHistory.m │ │ │ ├── DBInstalledSoftware.h │ │ │ ├── DBInstalledSoftware.m │ │ │ ├── DBModels.h │ │ │ ├── EventToSend.c │ │ │ ├── EventToSend.h │ │ │ ├── FileVaultIcon.icns │ │ │ ├── GlobalQueueManager.h │ │ │ ├── GlobalQueueManager.m │ │ │ ├── HistoryItem.h │ │ │ ├── HistoryItem.m │ │ │ ├── HistoryViewController.h │ │ │ ├── HistoryViewController.m │ │ │ ├── HistoryViewController.xib │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon-old.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── mp_3_icon-1.png │ │ │ │ │ ├── mp_3_icon.png │ │ │ │ │ ├── mp_3_icon_128-1.png │ │ │ │ │ ├── mp_3_icon_512-1.png │ │ │ │ │ └── mp_3_icon_512-2.png │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── mp_3_icon_1024.png │ │ │ │ │ ├── mp_3_icon_128-1.png │ │ │ │ │ ├── mp_3_icon_16-1.png │ │ │ │ │ ├── mp_3_icon_256-1.png │ │ │ │ │ ├── mp_3_icon_256.png │ │ │ │ │ ├── mp_3_icon_32-1.png │ │ │ │ │ ├── mp_3_icon_32.png │ │ │ │ │ ├── mp_3_icon_512-1.png │ │ │ │ │ ├── mp_3_icon_512.png │ │ │ │ │ └── mp_3_icon_64-1.png │ │ │ │ ├── AppStore.imageset │ │ │ │ │ ├── 245979-128-2.png │ │ │ │ │ ├── 245979-256-2.png │ │ │ │ │ ├── 245979-64-2.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── EmptyImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Empty-1.png │ │ │ │ │ └── Empty.png │ │ │ │ ├── ErrorImage.imageset │ │ │ │ │ ├── AlertStop.png │ │ │ │ │ ├── AlertStop@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── GoodImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Success_128.png │ │ │ │ │ ├── Success_32.png │ │ │ │ │ └── Success_64.png │ │ │ │ ├── GoodImageHD.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── SuccessHD_128.png │ │ │ │ │ ├── SuccessHD_32.png │ │ │ │ │ └── SuccessHD_64.png │ │ │ │ ├── HistoryTemplate.imageset │ │ │ │ │ ├── 763474-128.png │ │ │ │ │ ├── 763474-256.png │ │ │ │ │ ├── 763474-64.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── MacPatchTemplate.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── mp_3_img2+64.png │ │ │ │ │ ├── mp_3_img2_128.png │ │ │ │ │ └── mp_3_img2_166.png │ │ │ │ ├── RebootImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Reboot_128.png │ │ │ │ │ ├── Reboot_32.png │ │ │ │ │ └── Reboot_64.png │ │ │ │ ├── UpdatesTemplate.imageset │ │ │ │ │ ├── 2123950-128-2.png │ │ │ │ │ ├── 2123950-256-2.png │ │ │ │ │ ├── 2123950-64-2.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── WarningImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── WarningTriangle.png │ │ │ │ │ └── WarningTriangle@2x.png │ │ │ │ ├── alertImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── alert_128.png │ │ │ │ │ ├── alert_32.png │ │ │ │ │ └── alert_64.png │ │ │ │ ├── appImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── mp_3_icon_128-1.png │ │ │ │ │ ├── mp_3_icon_256.png │ │ │ │ │ └── mp_3_icon_512.png │ │ │ │ ├── appStoreImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── appStoreImage-1.png │ │ │ │ │ ├── appStoreImage-2.png │ │ │ │ │ └── appStoreImage.png │ │ │ │ ├── appleImage.imageset │ │ │ │ │ ├── AppleLogo.png │ │ │ │ │ ├── AppleLogo@2x.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── appstoreTemplate.imageset │ │ │ │ │ ├── 28-appstore-128-gray-alt.png │ │ │ │ │ ├── 28-appstore-256-gray-alt.png │ │ │ │ │ ├── 28-appstore-64-gray-alt.png │ │ │ │ │ └── Contents.json │ │ │ │ ├── macPatchImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── mp_3_icon_20.png │ │ │ │ │ └── mp_3_icon_48.png │ │ │ │ ├── moreInfo.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── Info_128.png │ │ │ │ │ ├── Info_32.png │ │ │ │ │ └── Info_64.png │ │ │ │ └── restartImage.imageset │ │ │ │ │ ├── Contents.json │ │ │ │ │ ├── restart-200.png │ │ │ │ │ ├── restart-48.png │ │ │ │ │ └── restart-96.png │ │ │ ├── Info.plist │ │ │ ├── LongPatchWindow.h │ │ │ ├── LongPatchWindow.m │ │ │ ├── LongPatchWindow.xib │ │ │ ├── MPHelperProtocol.h │ │ │ ├── MacPatch.entitlements │ │ │ ├── MacPatch.pch │ │ │ ├── Model │ │ │ │ ├── MPApplePatch.h │ │ │ │ ├── MPApplePatch.m │ │ │ │ ├── MPCustomPatch.h │ │ │ │ └── MPCustomPatch.m │ │ │ ├── NSImage+RoundCorner.h │ │ │ ├── NSImage+RoundCorner.m │ │ │ ├── Preferences │ │ │ │ ├── MPauthrestartVC.h │ │ │ │ ├── MPauthrestartVC.m │ │ │ │ ├── MPauthrestartVC.xib │ │ │ │ ├── PrefsAdvancedVC.h │ │ │ │ ├── PrefsAdvancedVC.m │ │ │ │ ├── PrefsAdvancedVC.xib │ │ │ │ ├── PrefsGeneralViewController.h │ │ │ │ ├── PrefsGeneralViewController.m │ │ │ │ ├── PrefsGeneralViewController.xib │ │ │ │ ├── PrefsSoftwareVC.h │ │ │ │ ├── PrefsSoftwareVC.m │ │ │ │ ├── PrefsSoftwareVC.xib │ │ │ │ ├── PrefsUpdatesVC.h │ │ │ │ ├── PrefsUpdatesVC.m │ │ │ │ └── PrefsUpdatesVC.xib │ │ │ ├── PressedButton.png │ │ │ ├── SWInstallItem.h │ │ │ ├── SWInstallItem.m │ │ │ ├── SYFlatButton.h │ │ │ ├── SYFlatButton.m │ │ │ ├── SoftwareCellView.h │ │ │ ├── SoftwareCellView.m │ │ │ ├── SoftwareInstallOperation.h │ │ │ ├── SoftwareInstallOperation.m │ │ │ ├── SoftwareUninstallOperation.h │ │ │ ├── SoftwareUninstallOperation.m │ │ │ ├── SoftwareViewController.h │ │ │ ├── SoftwareViewController.m │ │ │ ├── SoftwareViewController.xib │ │ │ ├── ThridParty │ │ │ │ ├── MBProgressHUD │ │ │ │ │ ├── MBProgressHUD.h │ │ │ │ │ └── MBProgressHUD.m │ │ │ │ ├── MPFileMonitor.h │ │ │ │ ├── MPFileMonitor.m │ │ │ │ ├── MPOProgressBar.h │ │ │ │ ├── MPOProgressBar.m │ │ │ │ └── RHPreferences │ │ │ │ │ ├── RHPreferences.h │ │ │ │ │ ├── RHPreferencesWindow.xib │ │ │ │ │ ├── RHPreferencesWindowController.h │ │ │ │ │ └── RHPreferencesWindowController.m │ │ │ ├── UnPressedButton.png │ │ │ ├── UpdateInstallOperation.h │ │ │ ├── UpdateInstallOperation.m │ │ │ ├── UpdatesCellView.h │ │ │ ├── UpdatesCellView.m │ │ │ ├── UpdatesVC.h │ │ │ ├── UpdatesVC.m │ │ │ ├── UpdatesVC.xib │ │ │ ├── html │ │ │ │ ├── agent.html │ │ │ │ ├── banner.html │ │ │ │ ├── bootstrap-table │ │ │ │ │ ├── bootstrap-table-locale-all.js │ │ │ │ │ ├── bootstrap-table-locale-all.min.js │ │ │ │ │ ├── bootstrap-table.css │ │ │ │ │ ├── bootstrap-table.js │ │ │ │ │ ├── bootstrap-table.min.css │ │ │ │ │ ├── bootstrap-table.min.js │ │ │ │ │ ├── extensions │ │ │ │ │ │ ├── accent-neutralise │ │ │ │ │ │ │ ├── bootstrap-table-accent-neutralise.js │ │ │ │ │ │ │ └── bootstrap-table-accent-neutralise.min.js │ │ │ │ │ │ ├── angular │ │ │ │ │ │ │ ├── bootstrap-table-angular.js │ │ │ │ │ │ │ └── bootstrap-table-angular.min.js │ │ │ │ │ │ ├── auto-refresh │ │ │ │ │ │ │ ├── bootstrap-table-auto-refresh.css │ │ │ │ │ │ │ ├── bootstrap-table-auto-refresh.js │ │ │ │ │ │ │ └── bootstrap-table-auto-refresh.min.js │ │ │ │ │ │ ├── click-edit-row │ │ │ │ │ │ │ ├── bootstrap-table-click-edit-row.css │ │ │ │ │ │ │ ├── bootstrap-table-click-edit-row.js │ │ │ │ │ │ │ └── bootstrap-table-click-edit-row.min.js │ │ │ │ │ │ ├── cookie │ │ │ │ │ │ │ ├── bootstrap-table-cookie.js │ │ │ │ │ │ │ └── bootstrap-table-cookie.min.js │ │ │ │ │ │ ├── copy-rows │ │ │ │ │ │ │ ├── bootstrap-table-copy-rows.js │ │ │ │ │ │ │ └── bootstrap-table-copy-rows.min.js │ │ │ │ │ │ ├── editable │ │ │ │ │ │ │ ├── bootstrap-table-editable.js │ │ │ │ │ │ │ └── bootstrap-table-editable.min.js │ │ │ │ │ │ ├── export │ │ │ │ │ │ │ ├── bootstrap-table-export.js │ │ │ │ │ │ │ └── bootstrap-table-export.min.js │ │ │ │ │ │ ├── filter-control │ │ │ │ │ │ │ ├── bootstrap-table-filter-control.css │ │ │ │ │ │ │ ├── bootstrap-table-filter-control.js │ │ │ │ │ │ │ └── bootstrap-table-filter-control.min.js │ │ │ │ │ │ ├── filter │ │ │ │ │ │ │ ├── bootstrap-table-filter.js │ │ │ │ │ │ │ └── bootstrap-table-filter.min.js │ │ │ │ │ │ ├── flat-json │ │ │ │ │ │ │ ├── bootstrap-table-flat-json.js │ │ │ │ │ │ │ └── bootstrap-table-flat-json.min.js │ │ │ │ │ │ ├── group-by-v2 │ │ │ │ │ │ │ ├── bootstrap-table-group-by.css │ │ │ │ │ │ │ ├── bootstrap-table-group-by.js │ │ │ │ │ │ │ └── bootstrap-table-group-by.min.js │ │ │ │ │ │ ├── group-by │ │ │ │ │ │ │ ├── bootstrap-table-group-by.css │ │ │ │ │ │ │ ├── bootstrap-table-group-by.js │ │ │ │ │ │ │ └── bootstrap-table-group-by.min.js │ │ │ │ │ │ ├── i18n-enhance │ │ │ │ │ │ │ ├── bootstrap-table-i18n-enhance.js │ │ │ │ │ │ │ └── bootstrap-table-i18n-enhance.min.js │ │ │ │ │ │ ├── key-events │ │ │ │ │ │ │ ├── bootstrap-table-key-events.js │ │ │ │ │ │ │ └── bootstrap-table-key-events.min.js │ │ │ │ │ │ ├── mobile │ │ │ │ │ │ │ ├── bootstrap-table-mobile.js │ │ │ │ │ │ │ └── bootstrap-table-mobile.min.js │ │ │ │ │ │ ├── multi-column-toggle │ │ │ │ │ │ │ ├── bootstrap-table-multi-toggle.js │ │ │ │ │ │ │ └── bootstrap-table-multi-toggle.min.js │ │ │ │ │ │ ├── multiple-search │ │ │ │ │ │ │ ├── bootstrap-table-multiple-search.js │ │ │ │ │ │ │ └── bootstrap-table-multiple-search.min.js │ │ │ │ │ │ ├── multiple-selection-row │ │ │ │ │ │ │ ├── bootstrap-table-multiple-selection-row.css │ │ │ │ │ │ │ ├── bootstrap-table-multiple-selection-row.js │ │ │ │ │ │ │ └── bootstrap-table-multiple-selection-row.min.js │ │ │ │ │ │ ├── multiple-sort │ │ │ │ │ │ │ ├── bootstrap-table-multiple-sort.js │ │ │ │ │ │ │ └── bootstrap-table-multiple-sort.min.js │ │ │ │ │ │ ├── natural-sorting │ │ │ │ │ │ │ ├── bootstrap-table-natural-sorting.js │ │ │ │ │ │ │ └── bootstrap-table-natural-sorting.min.js │ │ │ │ │ │ ├── print │ │ │ │ │ │ │ ├── bootstrap-table-print.js │ │ │ │ │ │ │ └── bootstrap-table-print.min.js │ │ │ │ │ │ ├── reorder-columns │ │ │ │ │ │ │ ├── bootstrap-table-reorder-columns.js │ │ │ │ │ │ │ └── bootstrap-table-reorder-columns.min.js │ │ │ │ │ │ ├── reorder-rows │ │ │ │ │ │ │ ├── bootstrap-table-reorder-rows.css │ │ │ │ │ │ │ ├── bootstrap-table-reorder-rows.js │ │ │ │ │ │ │ └── bootstrap-table-reorder-rows.min.js │ │ │ │ │ │ ├── resizable │ │ │ │ │ │ │ ├── bootstrap-table-resizable.js │ │ │ │ │ │ │ └── bootstrap-table-resizable.min.js │ │ │ │ │ │ ├── select2-filter │ │ │ │ │ │ │ ├── bootstrap-table-select2-filter.js │ │ │ │ │ │ │ └── bootstrap-table-select2-filter.min.js │ │ │ │ │ │ ├── sticky-header │ │ │ │ │ │ │ ├── bootstrap-table-sticky-header.css │ │ │ │ │ │ │ ├── bootstrap-table-sticky-header.js │ │ │ │ │ │ │ └── bootstrap-table-sticky-header.min.js │ │ │ │ │ │ ├── toolbar │ │ │ │ │ │ │ ├── bootstrap-table-toolbar.js │ │ │ │ │ │ │ └── bootstrap-table-toolbar.min.js │ │ │ │ │ │ └── tree-column │ │ │ │ │ │ │ ├── bootstrap-table-tree-column.css │ │ │ │ │ │ │ ├── bootstrap-table-tree-column.js │ │ │ │ │ │ │ └── bootstrap-table-tree-column.min.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ └── locale │ │ │ │ │ │ ├── bootstrap-table-af-ZA.js │ │ │ │ │ │ ├── bootstrap-table-af-ZA.min.js │ │ │ │ │ │ ├── bootstrap-table-ar-SA.js │ │ │ │ │ │ ├── bootstrap-table-ar-SA.min.js │ │ │ │ │ │ ├── bootstrap-table-ca-ES.js │ │ │ │ │ │ ├── bootstrap-table-ca-ES.min.js │ │ │ │ │ │ ├── bootstrap-table-cs-CZ.js │ │ │ │ │ │ ├── bootstrap-table-cs-CZ.min.js │ │ │ │ │ │ ├── bootstrap-table-da-DK.js │ │ │ │ │ │ ├── bootstrap-table-da-DK.min.js │ │ │ │ │ │ ├── bootstrap-table-de-DE.js │ │ │ │ │ │ ├── bootstrap-table-de-DE.min.js │ │ │ │ │ │ ├── bootstrap-table-el-GR.js │ │ │ │ │ │ ├── bootstrap-table-el-GR.min.js │ │ │ │ │ │ ├── bootstrap-table-en-US.js │ │ │ │ │ │ ├── bootstrap-table-en-US.min.js │ │ │ │ │ │ ├── bootstrap-table-es-AR.js │ │ │ │ │ │ ├── bootstrap-table-es-AR.min.js │ │ │ │ │ │ ├── bootstrap-table-es-CL.js │ │ │ │ │ │ ├── bootstrap-table-es-CL.min.js │ │ │ │ │ │ ├── bootstrap-table-es-CR.js │ │ │ │ │ │ ├── bootstrap-table-es-CR.min.js │ │ │ │ │ │ ├── bootstrap-table-es-ES.js │ │ │ │ │ │ ├── bootstrap-table-es-ES.min.js │ │ │ │ │ │ ├── bootstrap-table-es-MX.js │ │ │ │ │ │ ├── bootstrap-table-es-MX.min.js │ │ │ │ │ │ ├── bootstrap-table-es-NI.js │ │ │ │ │ │ ├── bootstrap-table-es-NI.min.js │ │ │ │ │ │ ├── bootstrap-table-es-SP.js │ │ │ │ │ │ ├── bootstrap-table-es-SP.min.js │ │ │ │ │ │ ├── bootstrap-table-et-EE.js │ │ │ │ │ │ ├── bootstrap-table-et-EE.min.js │ │ │ │ │ │ ├── bootstrap-table-fa-IR.js │ │ │ │ │ │ ├── bootstrap-table-fa-IR.min.js │ │ │ │ │ │ ├── bootstrap-table-fr-BE.js │ │ │ │ │ │ ├── bootstrap-table-fr-BE.min.js │ │ │ │ │ │ ├── bootstrap-table-fr-FR.js │ │ │ │ │ │ ├── bootstrap-table-fr-FR.min.js │ │ │ │ │ │ ├── bootstrap-table-he-IL.js │ │ │ │ │ │ ├── bootstrap-table-he-IL.min.js │ │ │ │ │ │ ├── bootstrap-table-hr-HR.js │ │ │ │ │ │ ├── bootstrap-table-hr-HR.min.js │ │ │ │ │ │ ├── bootstrap-table-hu-HU.js │ │ │ │ │ │ ├── bootstrap-table-hu-HU.min.js │ │ │ │ │ │ ├── bootstrap-table-id-ID.js │ │ │ │ │ │ ├── bootstrap-table-id-ID.min.js │ │ │ │ │ │ ├── bootstrap-table-it-IT.js │ │ │ │ │ │ ├── bootstrap-table-it-IT.min.js │ │ │ │ │ │ ├── bootstrap-table-ja-JP.js │ │ │ │ │ │ ├── bootstrap-table-ja-JP.min.js │ │ │ │ │ │ ├── bootstrap-table-ka-GE.js │ │ │ │ │ │ ├── bootstrap-table-ka-GE.min.js │ │ │ │ │ │ ├── bootstrap-table-ko-KR.js │ │ │ │ │ │ ├── bootstrap-table-ko-KR.min.js │ │ │ │ │ │ ├── bootstrap-table-ms-MY.js │ │ │ │ │ │ ├── bootstrap-table-ms-MY.min.js │ │ │ │ │ │ ├── bootstrap-table-nb-NO.js │ │ │ │ │ │ ├── bootstrap-table-nb-NO.min.js │ │ │ │ │ │ ├── bootstrap-table-nl-NL.js │ │ │ │ │ │ ├── bootstrap-table-nl-NL.min.js │ │ │ │ │ │ ├── bootstrap-table-pl-PL.js │ │ │ │ │ │ ├── bootstrap-table-pl-PL.min.js │ │ │ │ │ │ ├── bootstrap-table-pt-BR.js │ │ │ │ │ │ ├── bootstrap-table-pt-BR.min.js │ │ │ │ │ │ ├── bootstrap-table-pt-PT.js │ │ │ │ │ │ ├── bootstrap-table-pt-PT.min.js │ │ │ │ │ │ ├── bootstrap-table-ro-RO.js │ │ │ │ │ │ ├── bootstrap-table-ro-RO.min.js │ │ │ │ │ │ ├── bootstrap-table-ru-RU.js │ │ │ │ │ │ ├── bootstrap-table-ru-RU.min.js │ │ │ │ │ │ ├── bootstrap-table-sk-SK.js │ │ │ │ │ │ ├── bootstrap-table-sk-SK.min.js │ │ │ │ │ │ ├── bootstrap-table-sv-SE.js │ │ │ │ │ │ ├── bootstrap-table-sv-SE.min.js │ │ │ │ │ │ ├── bootstrap-table-th-TH.js │ │ │ │ │ │ ├── bootstrap-table-th-TH.min.js │ │ │ │ │ │ ├── bootstrap-table-tr-TR.js │ │ │ │ │ │ ├── bootstrap-table-tr-TR.min.js │ │ │ │ │ │ ├── bootstrap-table-uk-UA.js │ │ │ │ │ │ ├── bootstrap-table-uk-UA.min.js │ │ │ │ │ │ ├── bootstrap-table-ur-PK.js │ │ │ │ │ │ ├── bootstrap-table-ur-PK.min.js │ │ │ │ │ │ ├── bootstrap-table-uz-Latn-UZ.js │ │ │ │ │ │ ├── bootstrap-table-uz-Latn-UZ.min.js │ │ │ │ │ │ ├── bootstrap-table-vi-VN.js │ │ │ │ │ │ ├── bootstrap-table-vi-VN.min.js │ │ │ │ │ │ ├── bootstrap-table-zh-CN.js │ │ │ │ │ │ ├── bootstrap-table-zh-CN.min.js │ │ │ │ │ │ ├── bootstrap-table-zh-TW.js │ │ │ │ │ │ └── bootstrap-table-zh-TW.min.js │ │ │ │ ├── bootstrap │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-theme.css │ │ │ │ │ │ ├── bootstrap-theme.css.map │ │ │ │ │ │ ├── bootstrap-theme.min.css │ │ │ │ │ │ ├── bootstrap-theme.min.css.map │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ ├── fonts │ │ │ │ │ │ ├── glyphicons-halflings-regular.eot │ │ │ │ │ │ ├── glyphicons-halflings-regular.svg │ │ │ │ │ │ ├── glyphicons-halflings-regular.ttf │ │ │ │ │ │ ├── glyphicons-halflings-regular.woff │ │ │ │ │ │ └── glyphicons-halflings-regular.woff2 │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── npm.js │ │ │ │ ├── data.html │ │ │ │ ├── datapre.html │ │ │ │ ├── images │ │ │ │ │ ├── MPBannerBackground.png │ │ │ │ │ ├── livit_logo.png │ │ │ │ │ └── macpatch_logo.png │ │ │ │ ├── index.html │ │ │ │ ├── profiles.html │ │ │ │ ├── servers.html │ │ │ │ └── tasks.html │ │ │ └── main.m │ │ ├── MacPatchTests │ │ │ ├── Info.plist │ │ │ └── MacPatchTests.m │ │ └── MacPatchTile │ │ │ ├── Info.plist │ │ │ ├── MacPatchTile.h │ │ │ └── MacPatchTile.m │ ├── gov.llnl.mp.helper │ │ ├── gov.llnl.mp.helper.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── gov.llnl.mp.helper.xcscheme │ │ └── gov.llnl.mp.helper │ │ │ ├── AHCodesignVerifier │ │ │ ├── AHCodesignVerifier.h │ │ │ └── AHCodesignVerifier.m │ │ │ ├── DBMigration.h │ │ │ ├── DBMigration.m │ │ │ ├── Info.plist │ │ │ ├── MPHelper-Prefix.pch │ │ │ ├── MPHelperProtocol.h │ │ │ ├── XPCWorker.h │ │ │ ├── XPCWorker.m │ │ │ ├── gov.llnl.mp.helper.entitlements │ │ │ ├── gov.llnl.mp.helper.plist │ │ │ └── main.m │ └── gov.llnl.mp.status.ui │ │ ├── gov.llnl.mp.status.ui.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── gov.llnl.mp.status.ui.xcscheme │ │ └── gov.llnl.mp.status.ui │ │ ├── AHCodesignVerifier │ │ ├── AHCodesignVerifier.h │ │ └── AHCodesignVerifier.m │ │ ├── MPStatusProtocol.h │ │ ├── Supporting Files │ │ ├── Info.plist │ │ ├── MPStatusUI-Prefix.pch │ │ └── gov.llnl.mp.status.ui.plist │ │ ├── XPCStatus.h │ │ ├── XPCStatus.m │ │ ├── gov.llnl.mp.status.ui.entitlements │ │ └── main.m ├── Scripts │ └── Client │ │ └── fwManager.py └── Server │ ├── apps │ ├── .mpapi │ ├── .mpconsole │ ├── .mpglobal │ ├── api │ │ ├── .flaskenv │ │ ├── app.py │ │ ├── gunicorn_config.py │ │ ├── mpapi │ │ │ ├── MSIntune.py │ │ │ ├── __init__.py │ │ │ ├── agent │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── agent_2 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── agent_3 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── app.py │ │ │ ├── auth │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── autopkg │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── aws │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── checkin │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── checkin_2 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── checkin_3 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── config.py │ │ │ ├── extensions.py │ │ │ ├── inventory │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── inventory_2 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── inventory_3 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── mac_profiles │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── mac_profiles_2 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── main │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── model.py │ │ │ ├── mpaws.py │ │ │ ├── mpldap.py │ │ │ ├── mplogger.py │ │ │ ├── mputil.py │ │ │ ├── patches │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── patches_2 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── patches_3 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── patches_4 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── provisioning │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── register │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── register_2 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── servers │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── servers_2 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── shared │ │ │ │ ├── __init__.py │ │ │ │ ├── agentRegistration.py │ │ │ │ ├── client.py │ │ │ │ ├── patches.py │ │ │ │ └── software.py │ │ │ ├── software │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── software_2 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── software_3 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── software_4 │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── srv_utils │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── status │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ ├── support │ │ │ │ ├── __init__.py │ │ │ │ └── routes.py │ │ │ └── wsresult.py │ │ └── runapp.sh │ ├── console │ │ ├── .flaskenv │ │ ├── app.py │ │ ├── gunicorn_config.py │ │ ├── mpconsole │ │ │ ├── __init__.py │ │ │ ├── agent │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── app.py │ │ │ ├── auth │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── views.py │ │ │ ├── aws.py │ │ │ ├── clients │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── config.py │ │ │ ├── console │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── content │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── dashboard │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── errors │ │ │ │ ├── __init__.py │ │ │ │ └── handlers.py │ │ │ ├── extensions.py │ │ │ ├── global.py │ │ │ ├── main │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── maint │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── mdm │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── migrations │ │ │ │ ├── README │ │ │ │ ├── alembic.ini │ │ │ │ ├── env.py │ │ │ │ ├── script.py.mako │ │ │ │ └── versions │ │ │ │ │ ├── 100001_.py │ │ │ │ │ ├── 100002_.py │ │ │ │ │ ├── 100002a_.py │ │ │ │ │ ├── 100003_.py │ │ │ │ │ ├── 100004_.py │ │ │ │ │ ├── 100005_.py │ │ │ │ │ ├── 100006_.py │ │ │ │ │ ├── 100006a_.py │ │ │ │ │ ├── 100007_.py │ │ │ │ │ ├── 100007a_.py │ │ │ │ │ ├── 100008_.py │ │ │ │ │ ├── 100009_.py │ │ │ │ │ ├── 100010_.py │ │ │ │ │ ├── 100011_.py │ │ │ │ │ ├── 100012_.py │ │ │ │ │ ├── 100013_.py │ │ │ │ │ ├── 100014_.py │ │ │ │ │ └── 100015_.py │ │ │ ├── model.py │ │ │ ├── modes.py │ │ │ ├── mpldap.py │ │ │ ├── mplogger.py │ │ │ ├── mpsetup.py │ │ │ ├── mpsetupdb.py │ │ │ ├── mptasks.py │ │ │ ├── mputil.py │ │ │ ├── osmanage │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── views.py │ │ │ ├── package.json │ │ │ ├── patches │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── views.py │ │ │ ├── provision │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── registration │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ │ ├── reports │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── views.py │ │ │ ├── software │ │ │ │ ├── __init__.py │ │ │ │ ├── forms.py │ │ │ │ └── views.py │ │ │ ├── static │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-table-editable.css │ │ │ │ │ ├── main.css │ │ │ │ │ ├── mp.css │ │ │ │ │ ├── query-builder.mp.css │ │ │ │ │ ├── range.css │ │ │ │ │ └── upload.css │ │ │ │ ├── img │ │ │ │ │ ├── 36.png │ │ │ │ │ ├── MPLogo_40.png │ │ │ │ │ ├── Reboot_16.png │ │ │ │ │ ├── Reboot_32.png │ │ │ │ │ ├── Reboot_64.png │ │ │ │ │ ├── XC-Danger.png │ │ │ │ │ ├── XC-Normal.png │ │ │ │ │ ├── XC-Warning.png │ │ │ │ │ ├── arrow_down.png │ │ │ │ │ ├── cancel.png │ │ │ │ │ ├── clear.png │ │ │ │ │ ├── danger.png │ │ │ │ │ ├── empty.png │ │ │ │ │ ├── help.png │ │ │ │ │ ├── info_16.png │ │ │ │ │ ├── loading.gif │ │ │ │ │ ├── mp_3_icon_40.png │ │ │ │ │ ├── mp_3_icon_90.png │ │ │ │ │ ├── normal.png │ │ │ │ │ ├── normal_16.png │ │ │ │ │ ├── pkg_add.png │ │ │ │ │ ├── process_add_16.png │ │ │ │ │ ├── spinner.gif │ │ │ │ │ └── warning.png │ │ │ │ ├── json │ │ │ │ │ ├── default_tasks.json │ │ │ │ │ ├── inventory.json │ │ │ │ │ ├── jobs.json │ │ │ │ │ └── mdm_schema.json │ │ │ │ ├── multi │ │ │ │ │ ├── css │ │ │ │ │ │ └── style.css │ │ │ │ │ └── js │ │ │ │ │ │ ├── multiselect.js │ │ │ │ │ │ └── multiselect.min.js │ │ │ │ └── static_components │ │ │ │ │ ├── bootstrap-table-editable │ │ │ │ │ └── bootstrap-table-editable.js │ │ │ │ │ ├── jquery.form │ │ │ │ │ ├── jquery.form.min.js │ │ │ │ │ └── jquery.form.min.js.map │ │ │ │ │ ├── macpatch │ │ │ │ │ └── mp.js │ │ │ │ │ ├── modernizr │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── modernizr.js │ │ │ │ │ ├── popper │ │ │ │ │ ├── popper-utils.js │ │ │ │ │ ├── popper.js │ │ │ │ │ ├── popper.min.js │ │ │ │ │ └── popper.min.js_orig.js │ │ │ │ │ └── smalot-bootstrap-datetimepicker │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── css │ │ │ │ │ ├── bootstrap-datetimepicker.css │ │ │ │ │ └── bootstrap-datetimepicker.min.css │ │ │ │ │ ├── js │ │ │ │ │ ├── bootstrap-datetimepicker.js │ │ │ │ │ ├── bootstrap-datetimepicker.min.js │ │ │ │ │ └── locales │ │ │ │ │ │ ├── bootstrap-datetimepicker.ar.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.az.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.bg.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.bn.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.ca.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.cs.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.da.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.de.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.ee.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.el.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.es.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.fi.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.fr.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.he.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.hr.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.hu.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.hy.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.id.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.is.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.it.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.ja.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.ka.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.ko.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.lt.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.lv.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.ms.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.nb.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.nl.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.no.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.pl.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.pt-BR.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.pt.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.ro.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.rs-latin.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.rs.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.ru.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.sk.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.sl.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.sv.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.sw.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.th.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.tr.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.ua.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.uk.js │ │ │ │ │ │ ├── bootstrap-datetimepicker.zh-CN.js │ │ │ │ │ │ └── bootstrap-datetimepicker.zh-TW.js │ │ │ │ │ └── less │ │ │ │ │ └── datetimepicker.less │ │ │ ├── templates │ │ │ │ ├── 403.html │ │ │ │ ├── 404.html │ │ │ │ ├── 500.html │ │ │ │ ├── adm_agent_deploy.html │ │ │ │ ├── admin │ │ │ │ │ ├── account_update.html │ │ │ │ │ ├── accounts.html │ │ │ │ │ └── mp_server_db_config.html │ │ │ │ ├── agent_filter.html │ │ │ │ ├── agent_plugins.html │ │ │ │ ├── agent_plugins_update.html │ │ │ │ ├── asus_server_update.html │ │ │ │ ├── asus_servers.html │ │ │ │ ├── base.html │ │ │ │ ├── base_modal.html │ │ │ │ ├── blank.html │ │ │ │ ├── client_dashboard.html │ │ │ │ ├── client_download.html │ │ │ │ ├── client_group.html │ │ │ │ ├── client_group_sw_add.html │ │ │ │ ├── client_group_sw_res_add.html │ │ │ │ ├── client_group_user_mod.html │ │ │ │ ├── client_groups.html │ │ │ │ ├── clients.html │ │ │ │ ├── console_tasks.html │ │ │ │ ├── dashboard │ │ │ │ │ ├── dashboard.html │ │ │ │ │ └── dashview.html │ │ │ │ ├── datasources.html │ │ │ │ ├── docs │ │ │ │ │ └── provision │ │ │ │ │ │ └── ui_config.html │ │ │ │ ├── empty.html │ │ │ │ ├── error.html │ │ │ │ ├── error500.html │ │ │ │ ├── errors │ │ │ │ │ └── 404_new.html │ │ │ │ ├── index.html │ │ │ │ ├── login.html │ │ │ │ ├── logs.html │ │ │ │ ├── maint │ │ │ │ │ └── maint.html │ │ │ │ ├── mdm │ │ │ │ │ ├── corporate_device_query.html │ │ │ │ │ ├── corporate_devices.html │ │ │ │ │ ├── corporate_devices_add.html │ │ │ │ │ ├── device_config_profile_payload.html │ │ │ │ │ ├── device_config_profiles.html │ │ │ │ │ ├── enrolled_devices.html │ │ │ │ │ ├── mdm_group_membership.html │ │ │ │ │ └── mdm_groups.html │ │ │ │ ├── move_client_to_group.html │ │ │ │ ├── mp_server_update.html │ │ │ │ ├── mp_servers.html │ │ │ │ ├── os_managment │ │ │ │ │ ├── os_app_filters.html │ │ │ │ │ ├── os_app_restriction.html │ │ │ │ │ ├── os_profile_manager.html │ │ │ │ │ ├── os_profile_wizard.html │ │ │ │ │ └── os_profiles.html │ │ │ │ ├── patches │ │ │ │ │ ├── apple_patch_wizard.html │ │ │ │ │ ├── custom_patch_wizard copy.html │ │ │ │ │ ├── custom_patch_wizard.html │ │ │ │ │ ├── patch_group_admins.html │ │ │ │ │ ├── patch_group_patches.html │ │ │ │ │ ├── patch_groups.html │ │ │ │ │ ├── patch_status.html │ │ │ │ │ ├── patches_apple.html │ │ │ │ │ ├── patches_apple_mismatch.html │ │ │ │ │ ├── patches_custom.html │ │ │ │ │ ├── patches_detected.html │ │ │ │ │ ├── patches_installed.html │ │ │ │ │ └── update_patch_group.html │ │ │ │ ├── provision │ │ │ │ │ ├── criteria.html │ │ │ │ │ ├── criteriaAdd.html │ │ │ │ │ ├── script_modify.html │ │ │ │ │ ├── scripts.html │ │ │ │ │ ├── software_task_modify.html │ │ │ │ │ ├── software_tasks.html │ │ │ │ │ └── ui_config.html │ │ │ │ ├── registration.html │ │ │ │ ├── registration_key.html │ │ │ │ ├── reports │ │ │ │ │ ├── new_report.html │ │ │ │ │ ├── report.html │ │ │ │ │ └── save_report.html │ │ │ │ ├── software │ │ │ │ │ ├── software_group_filter_modify.html │ │ │ │ │ ├── software_group_filters.html │ │ │ │ │ ├── software_group_modify.html │ │ │ │ │ ├── software_group_tasks.html │ │ │ │ │ ├── software_groups.html │ │ │ │ │ ├── software_package_modify.html │ │ │ │ │ ├── software_packages.html │ │ │ │ │ ├── software_pkg_wizard.html │ │ │ │ │ ├── software_task_modify.html │ │ │ │ │ └── software_tasks.html │ │ │ │ └── update_client_group.html │ │ │ └── test │ │ │ │ ├── __init__.py │ │ │ │ └── views.py │ │ ├── mpsetup.py │ │ └── runapp.sh │ ├── logs │ │ └── .mpRM │ ├── pyRequiredAPI.txt │ ├── pyRequiredConsole.txt │ └── pyRequiredServer.txt │ ├── conf │ ├── Content │ │ └── Web │ │ │ └── tools │ │ │ └── MPAgentUploader.zip │ ├── launchd │ │ ├── gov.llnl.mp.invd.plist │ │ ├── gov.llnl.mp.nginx.plist │ │ ├── gov.llnl.mp.py.api.plist │ │ ├── gov.llnl.mp.py.console.plist │ │ ├── gov.llnl.mp.rsync.plist │ │ ├── gov.llnl.mp.sus.sync.plist │ │ └── gov.llnl.mp.sync.plist │ ├── nginx │ │ ├── nginx.conf │ │ ├── nginx.conf.mac │ │ └── sites │ │ │ ├── flask_mpapi.conf │ │ │ └── flask_mpconsole.conf │ ├── scripts │ │ ├── MPAgentUploader.py │ │ ├── MPInventoryD.py │ │ ├── MPSUSPatchSync.py │ │ ├── MPSyncContent.py │ │ ├── deprecated │ │ │ └── MPDBMigrate.py │ │ ├── setup │ │ │ ├── MPDBSetup.sql │ │ │ └── ServerSetup.py │ │ └── systemd │ │ │ ├── MPAPI.sh │ │ │ ├── MPConsole.sh │ │ │ └── MPInventoryD.sh │ ├── src │ │ └── server │ │ │ ├── nginx-1.26.0.tar.gz │ │ │ ├── openssl-3.2.1.tar.gz │ │ │ └── pcre-8.45.tar.gz │ └── systemd │ │ ├── MPAPI.service │ │ ├── MPConsole.service │ │ ├── MPInventoryD.service │ │ ├── MPNginx.service │ │ ├── MPRsyncServer.service │ │ ├── MPRsyncServer.socket │ │ └── MPRsyncServer@.service │ └── etc │ ├── patchloader.json │ ├── rsyncd.conf │ ├── siteconfig.json │ └── syncContent.json ├── images ├── MPLogo_3_256x256.png └── MPLogo_3_64x64.png └── scripts ├── Agent Uploader ├── MPAgentUpload.config ├── MPAgentUploader.py ├── Readme.txt └── Requirements.txt ├── MPBuildClient.sh ├── MPBuildPlanB.sh ├── MPBuildServer.sh ├── MPServerGitPull.sh └── MPServerUpgrader.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/.gitignore -------------------------------------------------------------------------------- /Acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Acknowledgements.md -------------------------------------------------------------------------------- /Changes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Changes -------------------------------------------------------------------------------- /DISCLAIMER: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/DISCLAIMER -------------------------------------------------------------------------------- /Info.txt: -------------------------------------------------------------------------------- 1 | MacPatch 3.2 Layout For GitHUB 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/Client/Components.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Client/Components.plist -------------------------------------------------------------------------------- /Packages/Client/Distribution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Client/Distribution -------------------------------------------------------------------------------- /Packages/Client/Files/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Applications/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/LaunchAgents/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/LaunchDaemons/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/MacPatch/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/MacPatch/Client/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/MacPatch/Client/Data/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/MacPatch/Client/Data/MacPatch/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/MacPatch/Client/Data/MacPatch/banner/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/MacPatch/Client/Data/MacPatch/banner/clientgroup/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/MacPatch/Client/Data/MacPatch/banner/default/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/MacPatch/Client/Logs/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/MacPatch/Client/Tools/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/MacPatch/Client/Tools/Support/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/Files/Library/PrivilegedHelperTools/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Client/PackageInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Client/PackageInfo -------------------------------------------------------------------------------- /Packages/Client/Resources/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Client/Resources/Background.png -------------------------------------------------------------------------------- /Packages/Client/Resources/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Client/Resources/License.rtf -------------------------------------------------------------------------------- /Packages/Client/Resources/Welcome.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Client/Resources/Welcome.rtf -------------------------------------------------------------------------------- /Packages/Client/Resources/mpInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Client/Resources/mpInfo.plist -------------------------------------------------------------------------------- /Packages/Client/Scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Client/Scripts/postinstall -------------------------------------------------------------------------------- /Packages/Client/Scripts/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Client/Scripts/preinstall -------------------------------------------------------------------------------- /Packages/Combined/Distribution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Combined/Distribution -------------------------------------------------------------------------------- /Packages/Combined/Distribution_Beta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Combined/Distribution_Beta -------------------------------------------------------------------------------- /Packages/Combined/Requirements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Combined/Requirements.plist -------------------------------------------------------------------------------- /Packages/Combined/Resources/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Combined/Resources/Background.png -------------------------------------------------------------------------------- /Packages/Combined/Resources/Background_done.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Combined/Resources/Background_done.png -------------------------------------------------------------------------------- /Packages/Combined/Resources/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Combined/Resources/License.rtf -------------------------------------------------------------------------------- /Packages/Combined/Resources/Welcome.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Combined/Resources/Welcome.rtf -------------------------------------------------------------------------------- /Packages/Combined/Resources/mpInfo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Combined/Resources/mpInfo.plist -------------------------------------------------------------------------------- /Packages/Docs/BuildClient.rtfd/TXT.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Docs/BuildClient.rtfd/TXT.rtf -------------------------------------------------------------------------------- /Packages/MDM/Distribution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/MDM/Distribution -------------------------------------------------------------------------------- /Packages/Updater/Components.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Updater/Components.plist -------------------------------------------------------------------------------- /Packages/Updater/Files/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Updater/Files/Library/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Updater/Files/Library/LaunchDaemons/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Updater/Files/Library/MacPatch/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Updater/Files/Library/MacPatch/Updater/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Updater/Files/Library/MacPatch/Updater/Logs/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/Updater/PackageInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Updater/PackageInfo -------------------------------------------------------------------------------- /Packages/Updater/Resources/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Updater/Resources/Background.png -------------------------------------------------------------------------------- /Packages/Updater/Resources/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Updater/Resources/License.rtf -------------------------------------------------------------------------------- /Packages/Updater/Resources/Welcome.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Updater/Resources/Welcome.rtf -------------------------------------------------------------------------------- /Packages/Updater/Scripts/MigrationInfo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Updater/Scripts/MigrationInfo.txt -------------------------------------------------------------------------------- /Packages/Updater/Scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Updater/Scripts/postinstall -------------------------------------------------------------------------------- /Packages/Updater/Scripts/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/Updater/Scripts/preinstall -------------------------------------------------------------------------------- /Packages/mpPlanB/Components.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/mpPlanB/Components.plist -------------------------------------------------------------------------------- /Packages/mpPlanB/Distribution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/mpPlanB/Distribution -------------------------------------------------------------------------------- /Packages/mpPlanB/Files/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/mpPlanB/Files/Library/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/mpPlanB/Files/Library/LaunchDaemons/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/mpPlanB/Files/Library/Preferences/gov.llnl.planb.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/mpPlanB/Files/Library/Preferences/gov.llnl.planb.plist -------------------------------------------------------------------------------- /Packages/mpPlanB/Files/usr/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/mpPlanB/Files/usr/local/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/mpPlanB/Files/usr/local/bin/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/mpPlanB/Files/usr/local/sbin/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Packages/mpPlanB/PackageInfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/mpPlanB/PackageInfo -------------------------------------------------------------------------------- /Packages/mpPlanB/Resources/Background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/mpPlanB/Resources/Background.png -------------------------------------------------------------------------------- /Packages/mpPlanB/Resources/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/mpPlanB/Resources/License.rtf -------------------------------------------------------------------------------- /Packages/mpPlanB/Scripts/postinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/mpPlanB/Scripts/postinstall -------------------------------------------------------------------------------- /Packages/mpPlanB/Scripts/preinstall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Packages/mpPlanB/Scripts/preinstall -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/README.md -------------------------------------------------------------------------------- /Source/Agent/InstallerBuildInfo.txt: -------------------------------------------------------------------------------- 1 | MP-3.7.0.1-20230112-174457- (Alpha) 2 | -------------------------------------------------------------------------------- /Source/Agent/MacPatch.pkg.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Agent/MacPatch.pkg.zip -------------------------------------------------------------------------------- /Source/Client/banner_sample/banner.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/banner_sample/banner.txt -------------------------------------------------------------------------------- /Source/Client/banner_sample/html/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/banner_sample/html/banner.html -------------------------------------------------------------------------------- /Source/Client/banner_sample/html/bootstrap-table/extensions/auto-refresh/bootstrap-table-auto-refresh.css: -------------------------------------------------------------------------------- 1 | .btn.enabled { 2 | background-color: #5bc0de; 3 | } 4 | -------------------------------------------------------------------------------- /Source/Client/banner_sample/html/bootstrap-table/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/banner_sample/html/bootstrap-table/jquery.min.js -------------------------------------------------------------------------------- /Source/Client/banner_sample/html/bootstrap/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/banner_sample/html/bootstrap/css/bootstrap.css -------------------------------------------------------------------------------- /Source/Client/banner_sample/html/bootstrap/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/banner_sample/html/bootstrap/css/bootstrap.css.map -------------------------------------------------------------------------------- /Source/Client/banner_sample/html/bootstrap/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/banner_sample/html/bootstrap/css/bootstrap.min.css -------------------------------------------------------------------------------- /Source/Client/banner_sample/html/bootstrap/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/banner_sample/html/bootstrap/js/bootstrap.js -------------------------------------------------------------------------------- /Source/Client/banner_sample/html/bootstrap/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/banner_sample/html/bootstrap/js/bootstrap.min.js -------------------------------------------------------------------------------- /Source/Client/banner_sample/html/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/banner_sample/html/bootstrap/js/npm.js -------------------------------------------------------------------------------- /Source/Client/banner_sample/html/images/MPBannerBackground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/banner_sample/html/images/MPBannerBackground.png -------------------------------------------------------------------------------- /Source/Client/banner_sample/html/images/macpatch_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/banner_sample/html/images/macpatch_logo.png -------------------------------------------------------------------------------- /Source/Client/planb/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/LICENSE -------------------------------------------------------------------------------- /Source/Client/planb/MOLAuthenticatingURLSession/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/MOLAuthenticatingURLSession/LICENSE -------------------------------------------------------------------------------- /Source/Client/planb/MOLAuthenticatingURLSession/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/MOLAuthenticatingURLSession/README.md -------------------------------------------------------------------------------- /Source/Client/planb/MOLCertificate/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/MOLCertificate/LICENSE -------------------------------------------------------------------------------- /Source/Client/planb/MOLCertificate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/MOLCertificate/README.md -------------------------------------------------------------------------------- /Source/Client/planb/MOLCertificate/Source/MOLCertificate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/MOLCertificate/Source/MOLCertificate.h -------------------------------------------------------------------------------- /Source/Client/planb/MOLCertificate/Source/MOLCertificate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/MOLCertificate/Source/MOLCertificate.m -------------------------------------------------------------------------------- /Source/Client/planb/Preferences/gov.llnl.planb.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/Preferences/gov.llnl.planb.plist -------------------------------------------------------------------------------- /Source/Client/planb/XCBuildData/build.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/XCBuildData/build.db -------------------------------------------------------------------------------- /Source/Client/planb/gov.llnl.mp.planb.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/gov.llnl.mp.planb.plist -------------------------------------------------------------------------------- /Source/Client/planb/mpPlanB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/mpPlanB -------------------------------------------------------------------------------- /Source/Client/planb/planb.xcodeproj/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/planb.xcodeproj/contents.xcworkspacedata -------------------------------------------------------------------------------- /Source/Client/planb/planb.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/planb.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/Client/planb/planb/PBCommandController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/planb/PBCommandController.h -------------------------------------------------------------------------------- /Source/Client/planb/planb/PBCommandController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/planb/PBCommandController.m -------------------------------------------------------------------------------- /Source/Client/planb/planb/PBLogging.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/planb/PBLogging.h -------------------------------------------------------------------------------- /Source/Client/planb/planb/PBPackageInstaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/planb/PBPackageInstaller.h -------------------------------------------------------------------------------- /Source/Client/planb/planb/PBPackageInstaller.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/planb/PBPackageInstaller.m -------------------------------------------------------------------------------- /Source/Client/planb/planb/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/planb/main.m -------------------------------------------------------------------------------- /Source/Client/planb/planb/planb-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/planb/planb-Info.plist -------------------------------------------------------------------------------- /Source/Client/planb/planb/planb.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/planb/planb.entitlements -------------------------------------------------------------------------------- /Source/Client/planb/planb/roots.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Client/planb/planb/roots.pem -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/AppDelegate.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/AuthViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/AuthViewController.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/Bridging-Header.h -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Constants.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/Constants.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/FileUploader.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/FileUploader.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/Alamofire.framework/Alamofire: -------------------------------------------------------------------------------- 1 | Versions/Current/Alamofire -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/Alamofire.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/Alamofire.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/Alamofire.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/Alamofire.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/LogKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/LogKit.framework/LogKit: -------------------------------------------------------------------------------- 1 | Versions/Current/LogKit -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/LogKit.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/LogKit.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/LogKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_Swift_4.1.2_LogKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_Swift_4.1.2_LogKit.framework/LogKit: -------------------------------------------------------------------------------- 1 | Versions/Current/LogKit -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_Swift_4.1.2_LogKit.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_Swift_4.1.2_LogKit.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_Swift_4.1.2_LogKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_4.1.2_Alamofire.framework/Alamofire: -------------------------------------------------------------------------------- 1 | Versions/Current/Alamofire -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_4.1.2_Alamofire.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_4.1.2_Alamofire.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_4.1.2_Alamofire.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_4.1.2_Alamofire.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_5_Alamofire_v5.framework/Alamofire: -------------------------------------------------------------------------------- 1 | Versions/Current/Alamofire -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_5_Alamofire_v5.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_5_Alamofire_v5.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_5_Alamofire_v5.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_5_Alamofire_v5.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_5_LogKit.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_5_LogKit.framework/LogKit: -------------------------------------------------------------------------------- 1 | Versions/Current/LogKit -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_5_LogKit.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_5_LogKit.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/Off/_swift_5_LogKit.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/SwiftShell.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/SwiftShell.framework/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/SwiftShell.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/SwiftShell.framework/SwiftShell: -------------------------------------------------------------------------------- 1 | Versions/Current/SwiftShell -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/SwiftShell.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/_SwiftShell.framework_/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/_SwiftShell.framework_/Modules: -------------------------------------------------------------------------------- 1 | Versions/Current/Modules -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/_SwiftShell.framework_/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/_SwiftShell.framework_/SwiftShell: -------------------------------------------------------------------------------- 1 | Versions/Current/SwiftShell -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Frameworks/_SwiftShell.framework_/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/HeaderView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/HeaderView.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/Info.plist -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/MPCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/MPCrypto.h -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/MPCrypto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/MPCrypto.m -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/Spawn.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/Spawn.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/SwiftShell/Bash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/SwiftShell/Bash.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/SwiftShell/Command.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/SwiftShell/Command.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/SwiftShell/Context.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/SwiftShell/Context.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/SwiftShell/Files.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/SwiftShell/Files.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/SwiftShell/Process.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/SwiftShell/Process.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/SwiftShell/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/SwiftShell/String.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/ViewController.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/_SwiftShell_/Bash.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/_SwiftShell_/Bash.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/_SwiftShell_/Files.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/_SwiftShell_/Files.swift -------------------------------------------------------------------------------- /Source/MPAgentUploader/MPAgentUploader/_SwiftShell_/String.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MPAgentUploader/MPAgentUploader/_SwiftShell_/String.swift -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/AVSoftware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/AVSoftware.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/AVSoftware.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/AVSoftware.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/AgentController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/AgentController.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/AgentController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/AgentController.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/AgentScanAndUpdateOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/AgentScanAndUpdateOperation.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/AgentScanAndUpdateOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/AgentScanAndUpdateOperation.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/AntiVirus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/AntiVirus.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/AntiVirus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/AntiVirus.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/AppStoreOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/AppStoreOperation.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/AppStoreOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/AppStoreOperation.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/CheckIn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/CheckIn.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/CheckIn.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/CheckIn.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/ClientCheckInOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/ClientCheckInOperation.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/ClientCheckInOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/ClientCheckInOperation.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/BatteryInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/BatteryInfo.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/BatteryInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/BatteryInfo.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/CHDisk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/CHDisk.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/CHDisk.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/CHDisk.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/CHDiskInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/CHDiskInfo.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/CHDiskInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/CHDiskInfo.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/InventoryPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/InventoryPlugin.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/LocalAdminAccounts.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/LocalAdminAccounts.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/LocalAdminAccounts.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/LocalAdminAccounts.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPAppStore.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPAppStore.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPAppStore.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPAppStore.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPDirectoryServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPDirectoryServices.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPDirectoryServices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPDirectoryServices.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPFileVaultInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPFileVaultInfo.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPFileVaultInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPFileVaultInfo.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPFirmware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPFirmware.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPFirmware.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPFirmware.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPInv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPInv.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPInv.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPInv.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPServerEntry.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPServerEntry.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPServerEntry.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPServerEntry.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPUsersAndGroups.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPUsersAndGroups.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MPUsersAndGroups.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MPUsersAndGroups.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MacAppStoreDataItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MacAppStoreDataItem.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/MacAppStoreDataItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/MacAppStoreDataItem.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/NSDirectoryServices.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/NSDirectoryServices.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/NSDirectoryServices.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/NSDirectoryServices.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/PowerProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/PowerProfile.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/PowerProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/PowerProfile.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/SPSmartCard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/SPSmartCard.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/SPSmartCard.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/SPSmartCard.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/SmartCardReaderList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/SmartCardReaderList.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/SmartCardReaderList.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/SmartCardReaderList.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/SysInfoCacheGen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/SysInfoCacheGen.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Inventory/SysInfoCacheGen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Inventory/SysInfoCacheGen.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/InventoryOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/InventoryOperation.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/InventoryOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/InventoryOperation.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/InventoryPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/InventoryPlugin.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPAgent-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPAgent-Info.plist -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPAgent-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPAgent-Prefix.pch -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPAgent.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPAgent.1 -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPAgent.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPAgent.entitlements -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPAgent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPAgent.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPAgent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPAgent.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPAgentRegister.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPAgentRegister.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPAgentRegister.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPAgentRegister.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPAgentUpdater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPAgentUpdater.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPAgentUpdater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPAgentUpdater.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPInventoryPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPInventoryPlugin.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPInventoryPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPInventoryPlugin.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPOSUpgrade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPOSUpgrade.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPOSUpgrade.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPOSUpgrade.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPOperation.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPOperation.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPProvision.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPProvision.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPProvision.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPProvision.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPSWDistTaskOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPSWDistTaskOperation.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPSWDistTaskOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPSWDistTaskOperation.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPTaskData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPTaskData.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPTaskData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPTaskData.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPTaskValidate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPTaskValidate.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPTaskValidate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPTaskValidate.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPTasks.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/MPTasks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/MPTasks.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/PatchScanAndUpdateOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/PatchScanAndUpdateOperation.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/PatchScanAndUpdateOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/PatchScanAndUpdateOperation.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/PostFailedWSRequests.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/PostFailedWSRequests.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/PostFailedWSRequests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/PostFailedWSRequests.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Profiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Profiles.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Profiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Profiles.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Software.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Software.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/Software.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/Software.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/SoftwareController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/SoftwareController.h -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/SoftwareController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/SoftwareController.m -------------------------------------------------------------------------------- /Source/MacPatch/MPAgent/MPAgent/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPAgent/MPAgent/main.m -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/AppLaunchObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/AppLaunchObject.h -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/AppLaunchObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/AppLaunchObject.m -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/CriticalWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/CriticalWindow.h -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/CriticalWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/CriticalWindow.m -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/EventToSend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/EventToSend.c -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/EventToSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/EventToSend.h -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/MPAppUsage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/MPAppUsage.h -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/MPAppUsage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/MPAppUsage.m -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/MPDiagCollector.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/MPDiagCollector.sh -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/MPGradientView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/MPGradientView.h -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/MPGradientView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/MPGradientView.m -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/Notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/Notes.txt -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/ProvisionHost.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/ProvisionHost.h -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/ProvisionHost.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/ProvisionHost.m -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/Provisioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/Provisioning.h -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/Provisioning.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/Provisioning.m -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/Provisioning.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/Provisioning.xib -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/RestartReq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/RestartReq.png -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/Survey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/Survey.h -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/Survey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/Survey.m -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/Survey.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/Survey.xib -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/VDKQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/VDKQueue.h -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/VDKQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/VDKQueue.m -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/empty.png -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/html/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/html/banner.html -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/html/index.html -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/main.m -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/mp3Alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/mp3Alt.png -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/mp_3_icon_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/mp_3_icon_20.png -------------------------------------------------------------------------------- /Source/MacPatch/MPClientStatus/MPClientStatus/warn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPClientStatus/MPClientStatus/warn.png -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/AgentData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/AgentData.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/AgentData.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/AgentData.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/ClientDB/MPClientDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/ClientDB/MPClientDB.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/ClientDB/MPClientDB.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/ClientDB/MPClientDB.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/ClientDB/Model/History.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/ClientDB/Model/History.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/ClientDB/Model/History.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/ClientDB/Model/History.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/ClientDB/Model/InstalledSoftware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/ClientDB/Model/InstalledSoftware.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/ClientDB/Model/InstalledSoftware.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/ClientDB/Model/InstalledSoftware.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/ClientDB/Model/RequiredPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/ClientDB/Model/RequiredPatch.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/ClientDB/Model/RequiredPatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/ClientDB/Model/RequiredPatch.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/CocoaSecurity/Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/CocoaSecurity/Base64.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/CocoaSecurity/Base64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/CocoaSecurity/Base64.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/CocoaSecurity/CocoaSecurity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/CocoaSecurity/CocoaSecurity.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/CocoaSecurity/CocoaSecurity.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/CocoaSecurity/CocoaSecurity.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/ConfigProfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/ConfigProfile.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/ConfigProfile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/ConfigProfile.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/DBHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/DBHistory.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/DBHistory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/DBHistory.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/DBInstalledSoftware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/DBInstalledSoftware.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/DBInstalledSoftware.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/DBInstalledSoftware.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/DBModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/DBModels.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/DBRequiredPatches.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/DBRequiredPatches.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/DBRequiredPatches.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/DBRequiredPatches.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/DHCachedPasswordUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/DHCachedPasswordUtil.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/DHCachedPasswordUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/DHCachedPasswordUtil.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPClientDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPClientDatabase.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPClientDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPClientDatabase.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPConfigProfiles.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPConfigProfiles.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPConfigProfiles.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPConfigProfiles.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPDownloadManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPDownloadManager.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPDownloadManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPDownloadManager.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPFileUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPFileUtils.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPFileUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPFileUtils.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPFileVaultInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPFileVaultInfo.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPFileVaultInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPFileVaultInfo.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Backup/MPNSTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Backup/MPNSTask.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Backup/MPNSTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Backup/MPNSTask.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Base64/NSString+Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Base64/NSString+Base64.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Base64/NSString+Base64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Base64/NSString+Base64.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Constants.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Constants.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Constants.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Constants.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Crypto/MPCrypto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Crypto/MPCrypto.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Crypto/MPCrypto.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Crypto/MPCrypto.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDB.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDB.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabase.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabase.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabase.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabase.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabaseAdditions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabaseAdditions.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabaseAdditions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabaseAdditions.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabasePool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabasePool.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabasePool.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabasePool.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabaseQueue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabaseQueue.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabaseQueue.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMDatabaseQueue.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMResultSet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMResultSet.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMResultSet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDB/FMResultSet.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMDBx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMDBx.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXColumnMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXColumnMap.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXColumnMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXColumnMap.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXCsvTable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXCsvTable.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXCsvTable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXCsvTable.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXDatabaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXDatabaseManager.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXDatabaseManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXDatabaseManager.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXHelpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXHelpers.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXHelpers.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXHelpers.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXModel.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXModel.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXQuery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXQuery.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXQuery.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXQuery.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXTableMap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXTableMap.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXTableMap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/FMDBx/FMXTableMap.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Helpers/NSDate+MPHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Helpers/NSDate+MPHelper.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Helpers/NSDate+MPHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Helpers/NSDate+MPHelper.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Helpers/NSString+Hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Helpers/NSString+Hash.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Helpers/NSString+Hash.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Helpers/NSString+Hash.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Helpers/NSString+Helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Helpers/NSString+Helper.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Helpers/NSString+Helper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Helpers/NSString+Helper.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/InventoryPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/InventoryPlugin.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/Logging/LCLLogFileConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/Logging/LCLLogFileConfig.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPClientInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPClientInfo.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPClientInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPClientInfo.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPClientKey.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPClientKey.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPClientKey.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPClientKey.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPCodeSign.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPCodeSign.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPCodeSign.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPCodeSign.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPDate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPDate.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPDate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPDate.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPDefaults.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPDefaults.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPDefaults.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPDefaults.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPDiskUtil.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPDiskUtil.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPDiskUtil.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPDiskUtil.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPHTTPRequest.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPHTTPRequest.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPHTTPRequest.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPHTTPRequest.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPKeyItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPKeyItem.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPKeyItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPKeyItem.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPKeychain.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPKeychain.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPLibrary-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPLibrary-Prefix.pch -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPLog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPLog.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPLog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPLog.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPNSTask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPNSTask.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPNSTask.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPNSTask.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPNetworkUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPNetworkUtils.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPNetworkUtils.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPNetworkUtils.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPPatch+Scanner/MPAsus.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPPatch+Scanner/MPAsus.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPPatch+Scanner/MPAsus.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPPatch+Scanner/MPAsus.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPPatch+Scanner/MPBundle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPPatch+Scanner/MPBundle.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPPatch+Scanner/MPBundle.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPPatch+Scanner/MPBundle.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPPatch+Scanner/MPScript.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPPatch+Scanner/MPScript.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPPatch+Scanner/MPScript.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPPatch+Scanner/MPScript.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPPython.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPPython.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPPython.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPPython.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPRESTfull.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPRESTfull.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPRESTfull.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPRESTfull.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPRemoteFingerprint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPRemoteFingerprint.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPRemoteFingerprint.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPRemoteFingerprint.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSWTasks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSWTasks.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSWTasks.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSWTasks.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPServerPing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPServerPing.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPServerPing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPServerPing.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSettings.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSettings.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSettings.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSettings.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSettings/Model/Agent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSettings/Model/Agent.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSettings/Model/Agent.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSettings/Model/Agent.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSettings/Model/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSettings/Model/Server.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSettings/Model/Server.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSettings/Model/Server.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSettings/Model/Task.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSettings/Model/Task.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSettings/Model/Task.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSettings/Model/Task.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSimpleKeychain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSimpleKeychain.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSimpleKeychain.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSimpleKeychain.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSystemInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSystemInfo.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPSystemInfo.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPSystemInfo.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPWSResult.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPWSResult.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MPWSResult.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MPWSResult.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MacPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MacPatch.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/MacPatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/MacPatch.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/NSData+Base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/NSData+Base64.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/NSData+Base64.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/NSData+Base64.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/NSData+Base64.m.orig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/NSData+Base64.m.orig -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/WebServices/MPDataMgr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/WebServices/MPDataMgr.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPLibrary/WebServices/MPDataMgr.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPLibrary/WebServices/MPDataMgr.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPPassItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPPassItem.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPPassItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPPassItem.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPPatching.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPPatching.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPPatching.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPPatching.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPSoftware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPSoftware.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLibrary/MPSoftware.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLibrary/MPSoftware.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/AppDelegate.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/AppDelegate.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/Info.plist -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/InstallAppleUpdate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/InstallAppleUpdate.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/InstallAppleUpdate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/InstallAppleUpdate.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/InstallPackage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/InstallPackage.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/InstallPackage.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/InstallPackage.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/MPAuthView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/MPAuthView.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/MPAuthView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/MPAuthView.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/MPAuthViewMin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/MPAuthViewMin.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/MPAuthViewMin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/MPAuthViewMin.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/MPHelperProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/MPHelperProtocol.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/MPPanel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/MPPanel.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/MPPanel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/MPPanel.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/MPScanner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/MPScanner.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/MPScanner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/MPScanner.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/MinScanAndPatchVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/MinScanAndPatchVC.h -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/MinScanAndPatchVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/MinScanAndPatchVC.m -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/images/AppleLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/images/AppleLogo.png -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/images/Empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/images/Empty.png -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/images/Fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/images/Fail.png -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/images/Logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/images/Logout.png -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/images/Running.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/images/Running.png -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/images/Success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/images/Success.png -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/images/Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/images/Warning.png -------------------------------------------------------------------------------- /Source/MacPatch/MPLoginAgent/MPLoginAgent/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPLoginAgent/MPLoginAgent/main.m -------------------------------------------------------------------------------- /Source/MacPatch/MPUpdater/MPUpdater.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPUpdater/MPUpdater.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/MacPatch/MPUpdater/MPUpdater/MPUpdater.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPUpdater/MPUpdater/MPUpdater.entitlements -------------------------------------------------------------------------------- /Source/MacPatch/MPUpdater/MPUpdater/MPUpdaterController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPUpdater/MPUpdater/MPUpdaterController.h -------------------------------------------------------------------------------- /Source/MacPatch/MPUpdater/MPUpdater/MPUpdaterController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPUpdater/MPUpdater/MPUpdaterController.m -------------------------------------------------------------------------------- /Source/MacPatch/MPUpdater/MPUpdater/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MPUpdater/MPUpdater/main.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/AgentVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/AgentVC.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/AgentVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/AgentVC.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/AgentVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/AgentVC.xib -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/AppDelegate.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/AppDelegate.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/Base.lproj/MainMenu.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/Base.lproj/MainMenu.xib -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/CollectionItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/CollectionItem.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/CollectionItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/CollectionItem.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/CollectionItem.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/CollectionItem.xib -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/DBHistory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/DBHistory.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/DBHistory.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/DBHistory.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/DBInstalledSoftware.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/DBInstalledSoftware.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/DBInstalledSoftware.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/DBInstalledSoftware.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/DBModels.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/DBModels.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/EventToSend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/EventToSend.c -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/EventToSend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/EventToSend.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/FileVaultIcon.icns: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/FileVaultIcon.icns -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/GlobalQueueManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/GlobalQueueManager.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/GlobalQueueManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/GlobalQueueManager.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/HistoryItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/HistoryItem.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/HistoryItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/HistoryItem.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/HistoryViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/HistoryViewController.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/HistoryViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/HistoryViewController.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/HistoryViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/HistoryViewController.xib -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/Info.plist -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/LongPatchWindow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/LongPatchWindow.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/LongPatchWindow.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/LongPatchWindow.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/LongPatchWindow.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/LongPatchWindow.xib -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/MPHelperProtocol.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/MPHelperProtocol.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/MacPatch.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/MacPatch.entitlements -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/MacPatch.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/MacPatch.pch -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/Model/MPApplePatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/Model/MPApplePatch.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/Model/MPApplePatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/Model/MPApplePatch.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/Model/MPCustomPatch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/Model/MPCustomPatch.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/Model/MPCustomPatch.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/Model/MPCustomPatch.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/NSImage+RoundCorner.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/NSImage+RoundCorner.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/NSImage+RoundCorner.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/NSImage+RoundCorner.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/Preferences/PrefsUpdatesVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/Preferences/PrefsUpdatesVC.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/Preferences/PrefsUpdatesVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/Preferences/PrefsUpdatesVC.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/PressedButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/PressedButton.png -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SWInstallItem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SWInstallItem.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SWInstallItem.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SWInstallItem.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SYFlatButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SYFlatButton.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SYFlatButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SYFlatButton.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SoftwareCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SoftwareCellView.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SoftwareCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SoftwareCellView.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SoftwareInstallOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SoftwareInstallOperation.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SoftwareInstallOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SoftwareInstallOperation.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SoftwareUninstallOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SoftwareUninstallOperation.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SoftwareUninstallOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SoftwareUninstallOperation.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SoftwareViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SoftwareViewController.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SoftwareViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SoftwareViewController.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/SoftwareViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/SoftwareViewController.xib -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/ThridParty/MPFileMonitor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/ThridParty/MPFileMonitor.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/ThridParty/MPFileMonitor.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/ThridParty/MPFileMonitor.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/ThridParty/MPOProgressBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/ThridParty/MPOProgressBar.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/ThridParty/MPOProgressBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/ThridParty/MPOProgressBar.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/UnPressedButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/UnPressedButton.png -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/UpdateInstallOperation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/UpdateInstallOperation.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/UpdateInstallOperation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/UpdateInstallOperation.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/UpdatesCellView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/UpdatesCellView.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/UpdatesCellView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/UpdatesCellView.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/UpdatesVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/UpdatesVC.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/UpdatesVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/UpdatesVC.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/UpdatesVC.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/UpdatesVC.xib -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/html/agent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/html/agent.html -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/html/banner.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/html/banner.html -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/html/bootstrap-table/extensions/auto-refresh/bootstrap-table-auto-refresh.css: -------------------------------------------------------------------------------- 1 | .btn.enabled { 2 | background-color: #5bc0de; 3 | } 4 | -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/html/bootstrap/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/html/bootstrap/js/npm.js -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/html/data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/html/data.html -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/html/datapre.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/html/datapre.html -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/html/images/livit_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/html/images/livit_logo.png -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/html/index.html -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/html/profiles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/html/profiles.html -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/html/servers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/html/servers.html -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/html/tasks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/html/tasks.html -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatch/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatch/main.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatchTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatchTests/Info.plist -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatchTests/MacPatchTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatchTests/MacPatchTests.m -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatchTile/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatchTile/Info.plist -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatchTile/MacPatchTile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatchTile/MacPatchTile.h -------------------------------------------------------------------------------- /Source/MacPatch/MacPatch/MacPatchTile/MacPatchTile.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/MacPatch/MacPatchTile/MacPatchTile.m -------------------------------------------------------------------------------- /Source/MacPatch/gov.llnl.mp.helper/gov.llnl.mp.helper/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/MacPatch/gov.llnl.mp.helper/gov.llnl.mp.helper/main.m -------------------------------------------------------------------------------- /Source/Scripts/Client/fwManager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Scripts/Client/fwManager.py -------------------------------------------------------------------------------- /Source/Server/apps/.mpapi: -------------------------------------------------------------------------------- 1 | ALLOW_CONTENT_DOWNLOAD="yes" -------------------------------------------------------------------------------- /Source/Server/apps/.mpconsole: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/.mpconsole -------------------------------------------------------------------------------- /Source/Server/apps/.mpglobal: -------------------------------------------------------------------------------- 1 | # Shared App Variables 2 | -------------------------------------------------------------------------------- /Source/Server/apps/api/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_APP=app.py 2 | -------------------------------------------------------------------------------- /Source/Server/apps/api/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/app.py -------------------------------------------------------------------------------- /Source/Server/apps/api/gunicorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/gunicorn_config.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/MSIntune.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/MSIntune.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/__init__.py: -------------------------------------------------------------------------------- 1 | from mpapi.app import create_app, db -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/agent/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/agent/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/agent/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/agent_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/agent_2/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/agent_2/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/agent_2/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/agent_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/agent_3/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/agent_3/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/agent_3/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/app.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/auth/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/auth/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/auth/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/autopkg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/autopkg/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/autopkg/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/autopkg/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/aws/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/aws/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/aws/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/aws/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/checkin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/checkin/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/checkin/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/checkin/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/checkin_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/checkin_2/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/checkin_2/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/checkin_2/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/checkin_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/checkin_3/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/checkin_3/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/checkin_3/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/config.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/extensions.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/inventory/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/inventory/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/inventory/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/inventory/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/inventory_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/inventory_2/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/inventory_2/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/inventory_2/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/inventory_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/inventory_3/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/inventory_3/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/inventory_3/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/mac_profiles/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/mac_profiles/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/mac_profiles/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/mac_profiles/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/mac_profiles_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/mac_profiles_2/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/mac_profiles_2/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/mac_profiles_2/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/main/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/main/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/main/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/model.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/mpaws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/mpaws.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/mpldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/mpldap.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/mplogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/mplogger.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/mputil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/mputil.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/patches/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/patches/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/patches/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/patches/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/patches_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/patches_2/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/patches_2/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/patches_2/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/patches_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/patches_3/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/patches_3/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/patches_3/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/patches_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/patches_4/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/patches_4/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/patches_4/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/provisioning/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/provisioning/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/provisioning/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/provisioning/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/register/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/register/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/register/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/register/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/register_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/register_2/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/register_2/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/register_2/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/servers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/servers/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/servers/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/servers/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/servers_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/servers_2/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/servers_2/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/servers_2/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/shared/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/shared/agentRegistration.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/shared/agentRegistration.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/shared/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/shared/client.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/shared/patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/shared/patches.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/shared/software.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/shared/software.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/software/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/software/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/software/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/software/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/software_2/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/software_2/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/software_2/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/software_2/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/software_3/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/software_3/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/software_3/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/software_3/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/software_4/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/software_4/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/software_4/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/software_4/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/srv_utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/srv_utils/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/srv_utils/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/srv_utils/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/status/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/status/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/status/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/status/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/support/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/support/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/support/routes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/support/routes.py -------------------------------------------------------------------------------- /Source/Server/apps/api/mpapi/wsresult.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/mpapi/wsresult.py -------------------------------------------------------------------------------- /Source/Server/apps/api/runapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/api/runapp.sh -------------------------------------------------------------------------------- /Source/Server/apps/console/.flaskenv: -------------------------------------------------------------------------------- 1 | FLASK_APP=app.py 2 | -------------------------------------------------------------------------------- /Source/Server/apps/console/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/app.py -------------------------------------------------------------------------------- /Source/Server/apps/console/gunicorn_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/gunicorn_config.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/__init__.py: -------------------------------------------------------------------------------- 1 | from mpconsole.app import create_app, db -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/agent/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/agent/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/agent/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/agent/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/app.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/auth/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/auth/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/auth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/auth/forms.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/auth/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/aws.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/aws.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/clients/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/clients/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/clients/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/clients/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/config.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/console/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/console/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/console/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/console/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/content/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/content/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/content/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/content/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/dashboard/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/dashboard/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/dashboard/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/dashboard/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/errors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/errors/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/errors/handlers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/errors/handlers.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/extensions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/extensions.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/global.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/global.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/main/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/main/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/main/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/main/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/maint/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/maint/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/maint/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/maint/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/mdm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/mdm/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/mdm/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/mdm/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/migrations/README: -------------------------------------------------------------------------------- 1 | Generic single-database configuration. -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/migrations/alembic.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/migrations/alembic.ini -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/migrations/env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/migrations/env.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/migrations/script.py.mako: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/migrations/script.py.mako -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/model.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/modes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/modes.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/mpldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/mpldap.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/mplogger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/mplogger.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/mpsetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/mpsetup.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/mpsetupdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/mpsetupdb.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/mptasks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/mptasks.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/mputil.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/mputil.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/osmanage/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/osmanage/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/osmanage/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/osmanage/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/osmanage/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/package.json -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/patches/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/patches/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/patches/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/patches/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/patches/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/provision/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/provision/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/provision/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/provision/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/registration/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/registration/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/registration/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/registration/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/reports/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/reports/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/reports/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/reports/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/reports/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/software/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/software/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/software/forms.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/software/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/software/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/css/main.css -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/css/mp.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/css/mp.css -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/css/range.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/css/range.css -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/css/upload.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/css/upload.css -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/36.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/MPLogo_40.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/MPLogo_40.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/Reboot_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/Reboot_16.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/Reboot_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/Reboot_32.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/Reboot_64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/Reboot_64.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/XC-Danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/XC-Danger.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/XC-Normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/XC-Normal.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/XC-Warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/XC-Warning.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/arrow_down.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/cancel.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/clear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/clear.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/danger.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/empty.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/help.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/info_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/info_16.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/loading.gif -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/normal.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/normal_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/normal_16.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/pkg_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/pkg_add.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/spinner.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/spinner.gif -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/img/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/img/warning.png -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/json/jobs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/static/json/jobs.json -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/static/static_components/modernizr/LICENSE.txt: -------------------------------------------------------------------------------- 1 | /*! Modernizr 3.0.0pre (Custom Build) | MIT */ 2 | -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/403.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/403.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/404.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/500.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/base.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/base_modal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/base_modal.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/blank.html: -------------------------------------------------------------------------------- 1 | {% extends "base.html" %} -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/clients.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/clients.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/empty.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/empty.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/error.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/error500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/error500.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/index.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/login.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/logs.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/logs.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/templates/mp_servers.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/templates/mp_servers.html -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/test/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/test/__init__.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpconsole/test/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpconsole/test/views.py -------------------------------------------------------------------------------- /Source/Server/apps/console/mpsetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/mpsetup.py -------------------------------------------------------------------------------- /Source/Server/apps/console/runapp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/console/runapp.sh -------------------------------------------------------------------------------- /Source/Server/apps/logs/.mpRM: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Source/Server/apps/pyRequiredAPI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/pyRequiredAPI.txt -------------------------------------------------------------------------------- /Source/Server/apps/pyRequiredConsole.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/pyRequiredConsole.txt -------------------------------------------------------------------------------- /Source/Server/apps/pyRequiredServer.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/apps/pyRequiredServer.txt -------------------------------------------------------------------------------- /Source/Server/conf/Content/Web/tools/MPAgentUploader.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/Content/Web/tools/MPAgentUploader.zip -------------------------------------------------------------------------------- /Source/Server/conf/launchd/gov.llnl.mp.invd.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/launchd/gov.llnl.mp.invd.plist -------------------------------------------------------------------------------- /Source/Server/conf/launchd/gov.llnl.mp.nginx.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/launchd/gov.llnl.mp.nginx.plist -------------------------------------------------------------------------------- /Source/Server/conf/launchd/gov.llnl.mp.py.api.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/launchd/gov.llnl.mp.py.api.plist -------------------------------------------------------------------------------- /Source/Server/conf/launchd/gov.llnl.mp.py.console.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/launchd/gov.llnl.mp.py.console.plist -------------------------------------------------------------------------------- /Source/Server/conf/launchd/gov.llnl.mp.rsync.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/launchd/gov.llnl.mp.rsync.plist -------------------------------------------------------------------------------- /Source/Server/conf/launchd/gov.llnl.mp.sus.sync.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/launchd/gov.llnl.mp.sus.sync.plist -------------------------------------------------------------------------------- /Source/Server/conf/launchd/gov.llnl.mp.sync.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/launchd/gov.llnl.mp.sync.plist -------------------------------------------------------------------------------- /Source/Server/conf/nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/nginx/nginx.conf -------------------------------------------------------------------------------- /Source/Server/conf/nginx/nginx.conf.mac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/nginx/nginx.conf.mac -------------------------------------------------------------------------------- /Source/Server/conf/nginx/sites/flask_mpapi.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/nginx/sites/flask_mpapi.conf -------------------------------------------------------------------------------- /Source/Server/conf/nginx/sites/flask_mpconsole.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/nginx/sites/flask_mpconsole.conf -------------------------------------------------------------------------------- /Source/Server/conf/scripts/MPAgentUploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/scripts/MPAgentUploader.py -------------------------------------------------------------------------------- /Source/Server/conf/scripts/MPInventoryD.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/scripts/MPInventoryD.py -------------------------------------------------------------------------------- /Source/Server/conf/scripts/MPSUSPatchSync.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/scripts/MPSUSPatchSync.py -------------------------------------------------------------------------------- /Source/Server/conf/scripts/MPSyncContent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/scripts/MPSyncContent.py -------------------------------------------------------------------------------- /Source/Server/conf/scripts/deprecated/MPDBMigrate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/scripts/deprecated/MPDBMigrate.py -------------------------------------------------------------------------------- /Source/Server/conf/scripts/setup/MPDBSetup.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/scripts/setup/MPDBSetup.sql -------------------------------------------------------------------------------- /Source/Server/conf/scripts/setup/ServerSetup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/scripts/setup/ServerSetup.py -------------------------------------------------------------------------------- /Source/Server/conf/scripts/systemd/MPAPI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/scripts/systemd/MPAPI.sh -------------------------------------------------------------------------------- /Source/Server/conf/scripts/systemd/MPConsole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/scripts/systemd/MPConsole.sh -------------------------------------------------------------------------------- /Source/Server/conf/scripts/systemd/MPInventoryD.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/scripts/systemd/MPInventoryD.sh -------------------------------------------------------------------------------- /Source/Server/conf/src/server/nginx-1.26.0.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/src/server/nginx-1.26.0.tar.gz -------------------------------------------------------------------------------- /Source/Server/conf/src/server/openssl-3.2.1.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/src/server/openssl-3.2.1.tar.gz -------------------------------------------------------------------------------- /Source/Server/conf/src/server/pcre-8.45.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/src/server/pcre-8.45.tar.gz -------------------------------------------------------------------------------- /Source/Server/conf/systemd/MPAPI.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/systemd/MPAPI.service -------------------------------------------------------------------------------- /Source/Server/conf/systemd/MPConsole.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/systemd/MPConsole.service -------------------------------------------------------------------------------- /Source/Server/conf/systemd/MPInventoryD.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/systemd/MPInventoryD.service -------------------------------------------------------------------------------- /Source/Server/conf/systemd/MPNginx.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/systemd/MPNginx.service -------------------------------------------------------------------------------- /Source/Server/conf/systemd/MPRsyncServer.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/systemd/MPRsyncServer.service -------------------------------------------------------------------------------- /Source/Server/conf/systemd/MPRsyncServer.socket: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/systemd/MPRsyncServer.socket -------------------------------------------------------------------------------- /Source/Server/conf/systemd/MPRsyncServer@.service: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/conf/systemd/MPRsyncServer@.service -------------------------------------------------------------------------------- /Source/Server/etc/patchloader.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/etc/patchloader.json -------------------------------------------------------------------------------- /Source/Server/etc/rsyncd.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/etc/rsyncd.conf -------------------------------------------------------------------------------- /Source/Server/etc/siteconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/etc/siteconfig.json -------------------------------------------------------------------------------- /Source/Server/etc/syncContent.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/Source/Server/etc/syncContent.json -------------------------------------------------------------------------------- /images/MPLogo_3_256x256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/images/MPLogo_3_256x256.png -------------------------------------------------------------------------------- /images/MPLogo_3_64x64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/images/MPLogo_3_64x64.png -------------------------------------------------------------------------------- /scripts/Agent Uploader/MPAgentUpload.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/scripts/Agent Uploader/MPAgentUpload.config -------------------------------------------------------------------------------- /scripts/Agent Uploader/MPAgentUploader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/scripts/Agent Uploader/MPAgentUploader.py -------------------------------------------------------------------------------- /scripts/Agent Uploader/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/scripts/Agent Uploader/Readme.txt -------------------------------------------------------------------------------- /scripts/Agent Uploader/Requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/scripts/Agent Uploader/Requirements.txt -------------------------------------------------------------------------------- /scripts/MPBuildClient.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/scripts/MPBuildClient.sh -------------------------------------------------------------------------------- /scripts/MPBuildPlanB.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/scripts/MPBuildPlanB.sh -------------------------------------------------------------------------------- /scripts/MPBuildServer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/scripts/MPBuildServer.sh -------------------------------------------------------------------------------- /scripts/MPServerGitPull.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/scripts/MPServerGitPull.sh -------------------------------------------------------------------------------- /scripts/MPServerUpgrader.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LLNL/MacPatch/HEAD/scripts/MPServerUpgrader.sh --------------------------------------------------------------------------------