This file contains 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
# Place this at the bottom of your /etc/profile file | |
if [ -n "$SSH_CLIENT" ]; then | |
TEXT="$(date): ssh login to ${USER}@$(hostname -f)" | |
TEXT="$TEXT from $(echo $SSH_CLIENT|awk '{print $1}')" | |
echo $TEXT|mail -s "ssh login" [email protected] | |
fi |
This file contains 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 | |
# create random password | |
PASSWD="$(openssl rand -base64 30)" | |
PASSWD_STAGE="$(openssl rand -base64 30)" | |
echo -e "\033[36mEnter DB name (domain name):\033[0m" | |
read db_name | |
echo -e "\033[36mEnter Username:\033[0m" |
This file contains 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
# Tab autocomplete ssh hosts | |
h=() | |
if [[ -r ~/.ssh/config ]]; then | |
h=($h ${${${(@M)${(f)"$(cat ~/.ssh/config)"}:#Host *}#Host }:#*[*?]*}) | |
fi | |
#if [[ -r ~/.ssh/known_hosts ]]; then | |
# h=($h ${${${(f)"$(cat ~/.ssh/known_hosts{,2} || true)"}%%\ *}%%,*}) 2>/dev/null | |
#fi | |
if [[ $#h -gt 0 ]]; then | |
zstyle ':completion:*:ssh:*' hosts $h |
This file contains 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
# Fail2Ban configuration file for M/Monit ( mmonit ) | |
# Author: eXtremeSHOK.com | |
# $Revision: 101 $ | |
[Definition] | |
# Option: failregex | |
# Notes.: regex to match the password failure messages in the logfile. The | |
# host must be matched by a group named "host". The tag "" can | |
# be used for standard IP/hostname matching and is only an alias for |
This file contains 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
add_filter('woocommerce_form_field_args', 'addBootstrapInputClass', 10, 3); | |
function addBootstrapInputClass($args, $key, $value) { | |
$args['input_class'] = ['form-control']; | |
return $args; | |
} |
This file contains 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
/opt/letsencrypt/letsencrypt-auto -d subdomain.example.com --manual --preferred-challenges dns certonly |
This file contains 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 | |
# Gracefully Restart PHP7 FPM with SIGUSR2 | |
# This clears PHP5 OpCache | |
if (kill -s USR2 `cat /var/run/php/php7.0-fpm.pid`) then | |
echo "Cleared PHP OpCache" | |
fi |
This file contains 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
Show hidden characters
{ | |
"preferences": { | |
"filter.commentAfter": "<!-- /<%= attr(\"id\", \"#\") %><%= attr(\"class\", \".\") %> -->" | |
}, | |
"syntaxProfiles": { | |
"html": { | |
"filters": "html,c" | |
} | |
} | |
} |
This file contains 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 | |
# | |
# USE FOR LOCAL DEVELOPMENT ONLY!!! | |
# | |
EMAIL='[email protected]' | |
MYSQL=`which mysql` | |
echo -n "DB user/name for project (lowercase) [ENTER]:" | |
read DB |
This file contains 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 | |
# Prints and copies to the clipboard the SVN URL of the current working | |
# directory or the first command line argument | |
# by @westonruter; use of awk and tr thanks to @josh_wnj | |
if [ $# == 0 ]; then | |
cwd=`pwd` | |
else | |
cwd="$1" | |
fi |