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 Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<array> | |
<dict> | |
<key>catalogs</key> | |
<array> | |
<string>4-Production.plist</string> | |
</array> | |
<key>description</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
Managed Software Update Tool | |
Copyright 2010-2011 The Munki Project | |
http://code.google.com/p/munki | |
Performing preflight tasks... | |
Manifest base URL is: http://server/ | |
Manifest base URL is: http://server/ | |
Getting manifest client_manifest... | |
Retreiving list of software for this machine... |
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 Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<array> | |
<dict> | |
<key>CFBundleIdentifier</key> | |
<string>com.unity3d.UnityEditor3.x</string> | |
<key>CFBundleName</key> | |
<string>Unity</string> | |
<key>CFBundleShortVersionString</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
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE plist PUBLIC "-//Apple Computer//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
<plist version="1.0"> | |
<array> | |
<dict> | |
<key>CFBundleIdentifier</key> | |
<string>com.unity3d.UnityEditor3.x</string> | |
<key>CFBundleName</key> | |
<string>Unity</string> | |
<key>CFBundleShortVersionString</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
#!/bin/bash | |
PRODUCT=Maya | |
YEAR=2012 | |
LIC=/private/var/flexlm/${PRODUCT}${YEAR}.lic | |
PRODCODE=657D1 | |
SERIAL=123-4567890 | |
SERVER=server.domain.com | |
LICENSEENV=/Applications/Autodesk/maya${YEAR}/${PRODUCT}.app/Contents/License.env |
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
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head> | |
<meta http-equiv="content-type" content="text/html;charset=UTF-8" /> | |
<title>Munki Server: index</title> | |
<link href="/assets/blueprint/reset.css?body=1" media="screen" rel="stylesheet" type="text/css" /> | |
<link href="/assets/blueprint/grid.css?body=1" media="screen" rel="stylesheet" type="text/css" /> | |
<link href="/assets/blueprint/typography.css?body=1" media="screen" rel="stylesheet" type="text/css" /> | |
<link href="/assets/blueprint/forms.css?body=1" media="screen" rel="stylesheet" type="text/css" /> | |
<link href="/assets/blueprint/index.css?body=1" media="screen" rel="stylesheet" type="text/css" /> |
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
ActiveAdmin.register User, :as => "Customer" do | |
filter :username | |
filter :email | |
filter :created_at | |
index do | |
id_column | |
column :username | |
column :email |
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> | |
</xml> |
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
#Make Secure Munki Directory | |
sudo mkdir -p /var/munki/Managed\ Installs | |
sudo chown root:wheel /var/munki/Managed\ Installs | |
sudo chmod 750 /var/munki/Managed\ Installs | |
#Setup secure Munki Directory | |
sudo defaults write /Library/Preferences/ManagedInstalls ManagedInstallDir "/var/munki/Managed Installs" |
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
Computer.all.each{|c| | |
if c.hostname == "" | |
c.hostname = c.name | |
end | |
if !c.valid? | |
c.hostname.downcase! | |
c.hostname.strip! | |
c.hostname.sub! /[_\s]/, '-' |