#!/bin/bash
# © 2012, Multapplied Networks, Inc.
# Sleep some random time between 0 and 300 seconds to reduce the load on the
# management server.
sleep $(($RANDOM % 300))
/usr/sbin/nodessl    --no-check-certificate crl &> /dev/null
/usr/sbin/nodeconfig --no-check-certificate     &> /dev/null
exit 0 # Ignore result
