sh -c "$(curl -fsSL https://raw.githubusercontent.com/robbyrussell/oh-my-zsh/master/tools/install.sh)"
- Download zsh-autosuggestions by
| I believe everything is working with a custom ssl certificate using the below config. | |
| I did a normal install then changed the config files. I would still like to find out how to specify all | |
| of this in the installer/answer files. | |
| Wildcard cert purchased from comodo: star.example.com.crt, star.example.com.key | |
| CA Bundle from comodo: ca-bundle-comodo.crt are | |
| On foreman server: | |
| /etc/httpd.conf/05-foreman-ssl.conf | |
| SSLCertificateFile "/etc/pki/tls/certs/star.example.com.crt" | |
| SSLCertificateChainFile "/etc/pki/tls/certs/ca-bundle-comodo.crt" |
| <?xml version="1.0" encoding="utf-8"?> | |
| <Content> | |
| <Metadata> | |
| <Title>PowerShell Profile Mail Configuration</Title> | |
| <Filename>DirSync.mail.config.xml</Filename> | |
| <Description></Description> | |
| <Tags>powershell, profile, mail, configuration</Tags> | |
| <Project></Project> | |
| <Author>Janik von Rotz</Author> |
| # Requires ActiveRoles CmdLets from Quest Software (They're free and awesome) - http://www.quest.com/powershell/activeroles-server.aspx | |
| Get-QADUser -SizeLimit 0 | Select-Object samAccountName,mail,PasswordStatus | | |
| Where-Object {$_.PasswordStatus -ne "Password never expires" -and $_.PasswordStatus -ne "Expired" -and $_.PasswordStatus -ne "User must change password at next logon." -and $_.mail -ne $null} | | |
| ForEach-Object { | |
| $today = Get-Date | |
| $logdate = Get-Date -format yyyyMMdd | |
| $samaccountname = $_.samAccountName | |
| $mail = $_.mail | |
| $passwordstatus = $_.PasswordStatus | |
| $passwordexpiry = $passwordstatus.Replace("Expires at: ","") |
| #!/bin/sh | |
| ### | |
| # | |
| # Name: shard.sh | |
| # Description: This Casper extension attribute takes a Mac serial | |
| # number as input and uses that serial number to output a | |
| # number from 1 to 10. This can be useful in scoping Casper | |
| # policies to a specific percentage of the fleet. | |
| # Author: Elliot Jordan <[email protected]> |
| #!/usr/bin/env sh | |
| ## | |
| # This is script with usefull tips taken from: | |
| # https://github.com/mathiasbynens/dotfiles/blob/master/.osx | |
| # | |
| # install it: | |
| # curl -sL https://raw.github.com/gist/2357277/hack.sh | sh | |
| # |
sudo -i and type in your Mac Administrator account password. sudo gives you root level or administrator level privileges.dsconfigad -show
| <?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.microsoft.Word</key> |