I hereby claim:
- I am hobakill on github.
- I am hobart (https://keybase.io/hobart) on keybase.
- I have a public key ASB1OLdjeTVyPeO_eSL-zT09ejXr0tvrmMDqxecYg3xKGAo
To claim this, I am signing this object:
| #!/usr/bin/env bash | |
| ssh -t [email protected] 'df -h' | |
| ^^^^^^ does not work ^^^^^^^ | |
| ssh: command not found | |
| ------------------------------------------ | |
| #!/usr/bin/env bash |
| // Hide on click. | |
| if (config.hideOnClick) { | |
| $this.find('a') | |
| .css('-webkit-tap-highlight-color', 'rgba(0,0,0,0)'); | |
| $this | |
| .on('click', 'a', function(event) { | |
| var $a = $(this), |
I hereby claim:
To claim this, I am signing this object:
| packages: | |
| rpm: | |
| SumoCollector: https://collectors.sumologic.com/rest/download/rpm/64 | |
| services: | |
| sysvinit: | |
| collector: | |
| enabled: true | |
| ensureRunning: true | |
| files: |
| #!/bin/bash | |
| # simple script for using eb deploy in a bash script | |
| app=$(cat config/application.rb |grep -i "module" |awk '{ print tolower ($2) }' ) | |
| current_date=$(date +"%Y%m%d-%T%Z") | |
| current_user=$(whoami) | |
| if [ ! -f .elasticbeanstalk/config.yml ]; then | |
| echo "You need to run 'eb init' first!" | |
| else |
| #!/bin/bash | |
| # Basic variables | |
| mysqlpass="########" | |
| bucket="s3://#####-prod-data-####/######-#" | |
| host="####-########-rds-platform-1.######.us-east-1.rds.amazonaws.com" | |
| # Timestamp (sortable AND readable) | |
| stamp=`date +"%s - %A %d %B %Y @ %H%M"` |
| echo "Running a check on your DB creds" | |
| mysql -u backup -p$mysqlpass -h $host -e "SHOW DATABASES;" &>/dev/null | |
| rc=$?; if [[ $rc != 0 ]]; then echo "not working; check your creds" && exit $rc; fi |