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 | |
#Aggiungere variabili configurabili | |
saved_dir=/root/saved | |
#Stampa l'utilizzo dello script | |
usage(){ | |
echo -e "Utilizzo: `basename $0` username" | |
exit 1; | |
} |
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 | |
initscript="/etc/init.d/myprocess" | |
mail=$(which mail) | |
destinatario="[email protected]" | |
oggetto='Mail subject' | |
data=$(date) | |
limite=190 #must be an integer | |
process="" #if the process to restart differ from the name of the initscript, then set it here | |
#if $process isn't set than we set with the same name of the initscript |
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
#Inizializzo l'array con tutti i nomi dei DB che mi interessano. | |
#+Inserire tra le parentesi tonde il nome del database da backuppare | |
#+rigorosamente uno per riga | |
#DB MySql | |
#E' possibile qui usare "all" come magic word per includere tutti i DB presenti. "all" va usata comunque come prima dell'elenco o meglio come unica | |
dbarray_mysql=( | |
foo | |
bar | |
) |
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 | |
# | |
# Install virtualbox: | |
# - http://www.virtualbox.org/wiki/Downloads | |
# - Download iso: http://releases.ubuntu.com/10.10/ | |
# - Create a new virtualbox using the iso as the install media | |
# - Change network adapter to bridged | |
# - Use ifconfig to get ip address | |
# | |
# Once you have a clean install of debien... |
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
<?php | |
/* | |
* Queste action aggiungono nel profilo utente i campi personalizzati. | |
* L'HTML è ovviamente da personalizzare a piacere. | |
* $user è una variabile passata in automatico dalla action di WP. | |
* 'custom_info' è la parte personalizzabile...si dovrebbe capire come e dove ;) | |
***/ | |
add_action( 'show_user_profile', 'my_show_custom_user_info' ); |
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 | |
#Install latest WordPress release in a specific path | |
#and don't bother any more! :) | |
if [[ ! $1 ]]; then | |
echo "Please, pass to me destination path as first argument! :)" | |
exit 1 | |
fi | |
path=$1 |
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 | |
# Set a new vhost in lamp for Linux. | |
# .vhostrc is adaptable for LAMPP: just add in your | |
# /opt/lampp/etc/httpd.conf a section like this: | |
# | |
# # Virtual hosts | |
# Include etc/extra/sites-enabled/* | |
# | |
# and create such dir: | |
# $sudo mkdir /opt/lampp/etc/extra/sites-enabled/ |
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
# Text color variables | |
txtred=$(tput setaf 1) #Red | |
txtgre=$(tput setaf 2) # Green | |
txtyel=$(tput setaf 3) # Yellow | |
txtblu=$(tput setaf 4) # Blue | |
txtbol=$(tput bold) # Bold | |
txtres=$(tput sgr0) # Reset | |
# Helper feedback functions | |
function info() { |
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
# Text color variables | |
txtred=$(tput setaf 1) #Red | |
txtgre=$(tput setaf 2) # Green | |
txtyel=$(tput setaf 3) # Yellow | |
txtblu=$(tput setaf 4) # Blue | |
txtbol=$(tput bold) # Bold | |
txtres=$(tput sgr0) # Reset | |
# Helper feedback functions | |
function info() { |
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 | |
# 20130130 | |
# This is a fork of the original script, adapted to work as bash installer on a | |
# pre-deployed Centos6 system. It takes args from bash invocation. It is not yet | |
# documented and all the following comments are originals from RedHat's guys. | |
# This is *REALLY* a wip and not usable by anyone without a bit of docs. | |
# We'll write down something when it will a bit tested and refactorized. | |
# This script configures a host system with OpenShift components. |
OlderNewer