This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<key>postinstall_script</key> | |
<string>#!/bin/sh | |
# Enable developer mode policies | |
/usr/sbin/DevToolsSecurity -enable | |
# Add a group to developer group | |
/usr/sbin/dseditgroup -o edit -a netaccounts -t group _developer | |
# Accept the Xcode EULA | |
/Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -license accept | |
exit 0</string> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<dict> | |
<key>PayloadContent</key> | |
<array> | |
<dict> | |
<key>PayloadContent</key> | |
<dict> | |
<key>com.grahamgilbert.sal</key> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# provide the path to the git binary if you want MunkiWeb to add and commit | |
# manifest edits to a git repo | |
# if GITPATH is undefined or None MunkiWeb will not attempt to do a git add | |
# or commit | |
GIT_PATH = '/usr/bin/' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sh-3.2# managedsoftwareupdate --applesus | |
Managed Software Update Tool | |
Copyright 2010-2014 The Munki Project | |
http://code.google.com/p/munki | |
Starting... | |
Performing preflight tasks... | |
preflight stdout: Preflight report submmitted for pcm-imp-1. | |
NOTE: managedsoftwareupdate is configured to process Apple Software Updates only. | |
Checking Apple Software Update catalog... |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@munki:/usr/local/bin# repoutil --products | grep -i iTunes | |
041-9825 iTunes Producer 3.0.0 2014-02-17 [] | |
zzzz031-02991 iTunes 11.2.2 2014-05-28 [] | |
zzzz031-02989 iTunes 11.2.2 2014-05-28 [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Software Update Tool | |
Copyright 2002-2012 Apple Inc. | |
Finding available software | |
Software Update found the following new or updated software: | |
* OSXUpd10.9.4-10.9.4 (13E9) | |
Pre-release: OS X Update Seed (10.9.4 (13E9)), 138869K [recommended] [restart] | |
* Safari7.0.4Mavericks-7.0.4 | |
Safari (7.0.4), 52454K [recommended] | |
* iTunesXPatch-11.2.2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<key>AppleCatalogURLs</key> | |
<array> | |
<string>http://swscan.apple.com/content/catalogs/index.sucatalog</string> | |
<string>http://swscan.apple.com/content/catalogs/index-1.sucatalog</string> | |
<string>http://swscan.apple.com/content/catalogs/others/index-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog</string> | |
<string>http://swscan.apple.com/content/catalogs/others/index-10.9-mountainlion-lion-snowleopard-leopard.merged-1.sucatalog</string> | |
</array> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sh-3.2# ./socketfilterfw --getappblocked "/Library/Application Support/LANrev Agent/LANrev Agent.app/Contents/MacOS/LANrev Agent" | |
Incoming connection to /Library/Application Support/LANrev Agent/LANrev Agent.app/Contents/MacOS/LANrev Agent is blocked | |
sh-3.2# ./socketfilterfw --unblockapp "/Library/Application Support/LANrev Agent/LANrev Agent.app/Contents/MacOS/LANrev Agent" | |
Incoming connection to the application is permitted | |
sh-3.2# ./socketfilterfw --getappblocked "/Library/Application Support/LANrev Agent/LANrev Agent.app/Contents/MacOS/LANrev Agent" | |
Incoming connection to /Library/Application Support/LANrev Agent/LANrev Agent.app/Contents/MacOS/LANrev Agent is blocked |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
root@stash:/etc/nginx/conf.d# cat stash.conf | |
server { | |
listen 80; | |
server_name stash.imp.univie.ac.at; | |
client_max_body_size 100m; | |
location / { | |
proxy_read_timeout 120; | |
proxy_pass http://127.0.0.1:7990; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen stash.imp.univie.ac.at:80; | |
server_name stash.imp.univie.ac.at; | |
client_max_body_size 100m; | |
location / { | |
proxy_read_timeout 120; | |
proxy_pass https://127.0.0.1:7990; | |
proxy_set_header Host $host; | |
proxy_set_header X-Real-IP $remote_addr; | |
proxy_set_header X-Forwarded-for $remote_addr; |