Blogroll

Search

check_ssl_cert 1.6.1

July 22nd, 2010 by Matteo and tagged , , , , , , , , ,

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 »

check_ssl_cert 1.5.1

July 1st, 2010 by Matteo and tagged , , , , , , , , , ,

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 »

check_ssl_1.5.0

June 8th, 2010 by Matteo and tagged , , , , , , , ,

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 »

check_ssl_cert 1.4.3

March 9th, 2010 by Matteo and tagged , , , , , , , , ,

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 »

shared ssh account with personalized settings

January 13th, 2009 by Matteo and tagged , ,

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 »