macOS keyboard shortcut favorites
Command (or Cmd) - ⌘
Control (or Ctrl) - ^
Option (or Alt) - ⌥
Shift - ⇧
Fn (Function) - 🌐
| #!/bin/bash | |
| # checkUsersWithoutSecureToken.sh | |
| # | |
| # Purpose: Determines which users do not have a Secure Token on High Sierra | |
| # This tells us which users will not be able to add other users via sysadminctl. | |
| # | |
| # Written by: Patrick Gallagher | |
| OSvers=$( sw_vers -productVersion | cut -d. -f2 ) | |
| # Check if this is a pairing Workstation |
| This current configuration is based of at least Server Version 1.16.5.1488 and Web Version: 3.108.2. | |
| This updated config file allows the playing of trailers and TV Show theme music where as the previous one did not. | |
| ## Requirements | |
| 1. Apache version > 2.4 | |
| 2. A bunch of mod's enabled (proxy, ssl, proxy_wstunnel, http, dir, env, headers, proxy_balancer, proxy_http, rewrite) | |
| 3. Protocols h2 http/1.1 needs apachectl -V 2.4.17 and higher... | |
| ## Apache .conf file |
| #! /usr/local/bin/bash | |
| # | |
| # Calomel.org | |
| # https://calomel.org/zfs_health_check_script.html | |
| # FreeBSD 9.1 ZFS Health Check script | |
| # zfs_health.sh @ Version 0.15 | |
| # Check health of ZFS volumes and drives. On any faults send email. In FreeBSD | |
| # 10 there is supposed to be a ZFSd daemon to monitor the health of the ZFS | |
| # pools. For now, in FreeBSD 9, we will make our own checks and run this script |