TL;DR
Install Postgres 9.5, and then:
sudo pg_dropcluster 9.5 main --stop
sudo pg_upgradecluster 9.3 main
sudo pg_dropcluster 9.3 main| # add as many as you need... | |
| SetEnvIf CF-IPCountry SY RedirectSubdomain=syria | |
| SetEnvIf CF-IPCountry AE RedirectSubdomain=uae | |
| SetEnvIf CF-IPCountry EG RedirectSubdomain=egypt | |
| # Only redirect if Host is not a subdomain | |
| SetEnvIfNoCase Host ^.+\.example\.com$ !RedirectSubdomain | |
| # Only redirect if cookie "noredirect" doesn't exist | |
| SetEnvIfNoCase ^Cookie$ noredirect=true !RedirectSubdomain |
| # Monitoring HAProxy via CSV stats | |
| # For detailed instructions visit http://lazic.info/josip/post/monitor-haproxy-via-prtg/ | |
| # Josip Lazic | |
| param( | |
| [string]$url, | |
| [string]$monitor | |
| ); | |
| $templates =@{ |
| #!/bin/bash | |
| export Register=https://register.example.com | |
| export cLink="/v2/_catalog?n=10" | |
| export cFile=docker.register.catalog | |
| export tFile=docker.register.tags | |
| export wgetC="wget -O- -q -S " | |
| # Usage with user/password | |
| # export wgetC="wget -O- -q -S --user=ondra --password=heslo " |
TL;DR
Install Postgres 9.5, and then:
sudo pg_dropcluster 9.5 main --stop
sudo pg_upgradecluster 9.3 main
sudo pg_dropcluster 9.3 main| "gcc: error: /usr/lib/rpm/redhat/redhat-hardened-cc1: No such file or directory" CentOS's and Fedora +22 workaround | |
| Install `redhat-rpm-config` | |
| $ sudo dnf install redhat-rpm-config |
| #!/bin/bash | |
| name=$RANDOM | |
| url='http://localhost:9093/api/v1/alerts' | |
| echo "firing up alert $name" | |
| # change url o | |
| curl -XPOST $url -d "[{ | |
| \"status\": \"firing\", |
| #!/bin/bash | |
| # lock script to prevent parallel running | |
| scriptname=$(basename "$0") | |
| pidfile="/tmp/${scriptname}-lock.pid" | |
| exec 200>"$pidfile" | |
| flock -n 200 || exit 1 | |
| pid=$$ | |
| echo $pid 1>&200 |
| #!/bin/bash | |
| ## This EC2 instance will need to be in the 'jenkins-ci-server' IAM Role | |
| # get latest updates | |
| sudo yum update -y | |
| # add Jenkins repo | |
| sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo | |
| # import key from Jenkins CI | |
| sudo rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key |
| a4b.amazonaws.com | |
| access-analyzer.amazonaws.com | |
| account.amazonaws.com | |
| acm-pca.amazonaws.com | |
| acm.amazonaws.com | |
| airflow-env.amazonaws.com | |
| airflow.amazonaws.com | |
| alexa-appkit.amazon.com | |
| alexa-connectedhome.amazon.com | |
| amazonmq.amazonaws.com |
| kubectl get nodes --sort-by=".status.conditions[?(@.reason == 'KubeletReady' )].lastTransitionTime" |