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
    
  
  
    
  | /* That's all, stop editing! Happy blogging. */ | |
| /** Absolute path to the WordPress directory. */ | |
| if ( !defined('ABSPATH') ) { | |
| define('ABSPATH', dirname(__FILE__) . '/'); | |
| } | |
| /** Sets up WordPress vars and included files. */ | |
| if ( !defined('WP_CLI') ) { | |
| require_once(ABSPATH . 'wp-settings.php'); | 
  
    
      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
    
  
  
    
  | docker-repository: | |
| pkg.installed: | |
| - pkgs: | |
| - apt-transport-https | |
| - ca-certificates | |
| - curl | |
| - software-properties-common | |
| cmd.run: | |
| - name: | | |
| curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add - | 
  
    
      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
    
  
  
    
  | ✖ support_portal | |
| ✖ proxy | |
| ✖ influxdb | |
| ✖ strongswan | |
| ✖ jmeter | |
| ✖ prosody | |
| ✖ jicofo | |
| ✖ tools | |
| ✖ jitsi-videobridge | |
| ✖ collaboration-nodejs-server | 
  
    
      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/sh | |
| parse_yaml() { | |
| local prefix=$2 | |
| local s='[[:space:]]*' w='[a-zA-Z0-9_]*' fs=$(echo @|tr @ '\034') | |
| sed -ne "s|^\($s\)\($w\)$s:$s\"\(.*\)\"$s\$|\1$fs\2$fs\3|p" \ | |
| -e "s|^\($s\)\($w\)$s:$s\(.*\)$s\$|\1$fs\2$fs\3|p" $1 | | |
| awk -F$fs '{ | |
| indent = length($1)/2; | |
| vname[indent] = $2; | |
| for (i in vname) {if (i > indent) {delete vname[i]}} | 
  
    
      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 | |
| #-- Script to automate https://help.github.com/articles/why-is-git-always-asking-for-my-password | |
| REPO_URL=`git remote -v | grep -m1 '^origin' | sed -Ene's#.*(https://[^[:space:]]*).*#\1#p'` | |
| if [ -z "$REPO_URL" ]; then | |
| echo "-- ERROR: Could not identify Repo url." | |
| echo " It is possible this repo is already using SSH instead of HTTPS." | |
| exit | |
| fi | 
  
    
      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
    
  
  
    
  | [global] | |
| pid = /tmp/php-fpm.pid | |
| error_log = /proc/self/fd/2 | |
| log_limit = 8192 | |
| daemonize = no | |
| [www] | |
| listen = 9000 | |
| clear_env = no | |
| access.log = /proc/self/fd/2 |