July 22nd, 2010 by Matteo and tagged
announcement,
bash,
enhancement,
monitoring,
nagios,
network,
plugin,
shell,
SSL,
update
I just released version 1.6.1 of check_ssl_cert: a Nagios plugin to check the validity of X509 certificates
Changes from version 1.6.0
- added
--temp to specify where to download temporary files
- checks the writability of the temporary storage (thanks to Marc Fournier for the patch)
Posted in Software | No Comments »
July 1st, 2010 by Matteo and tagged
announcement,
bash,
bug fix,
linux,
monitoring,
nagios,
network,
plugin,
shell,
SSL,
update
I just released version 1.5.1 of check_ssl_cert: a Nagios plugin to check the validity of X509 certificates
Changes from version 1.5.0
- fixed the plugin info text output (thanks to Yannick Gravel for the patch)
Posted in Software | No Comments »
June 8th, 2010 by Matteo and tagged
announcement,
bash,
enhancement,
monitoring,
nagios,
network,
plugin,
shell,
update
I just released version 1.5.0 of check_ssl_cert: a Nagios plugin to check the validity of X509 certificates
Changes from version 1.4.4
- added the -s command line option to allow self-signed certificates
Posted in Software | No Comments »
March 9th, 2010 by Matteo and tagged
announcement,
bash,
enhancement,
linux,
monitoring,
nagios,
network,
plugin,
shell,
update
I just released version 1.4.3 of check_ssl_cert: a Nagios plugin to check the validity of X509 certificates
Changes from version 1.4.2
- added the -n and -N options to match the CN with an host name (thanks to Marcus Rejås for the patch)
Posted in Software | No Comments »
January 13th, 2009 by Matteo and tagged
bash,
linux,
shell
At work we have serveral Unix accounts occasionally used by more than user. To allow each user to log in using a personlized shell we use the following shell function (simplified):
pssh() {
host=$1
scp -q ${HOME}/.dir_colors ${host}:.dir_colors.${USER}
cp ${HOME}/.bashrc ${HOME}/.bashrc.${USER}
echo 'eval $(dircolors ${HOME}/.dir_colors'.${USER}) >> ${HOME}/.bashrc.${USER}
scp -q ${HOME}/.bashrc.${USER} ${host}:.bashrc.${USER}
# log in and execute a shell with the special .bashrc file
ssh -t $host "bash --rcfile ~/.bashrc.${USER}"
}
In this way everyone can use his own .bashrc and terminal colors without interfering with other users of the shared account
Posted in Software | No Comments »