#!/bin/sh # mail_ILTOPS_EF_shutdown.sh # send ILT Operations an e-mail that the Effelsberg station is ready for ILT mode #_HIST DATE NAME PLACE INFO # 2012 Feb 06 James M Anderson --MPIfR start # 2012 Mar 12 JMA --add lofar-station-users to bcc list # 2012 Mar 27 JMA --move lofar-station-users to separate e-mail # Copyright (c) 2012, James M. Anderson # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # * Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # * Redistributions in binary form must reproduce the above # copyright notice, this list of conditions and the following # disclaimer in the documentation and/or other materials # provided with the distribution. # THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS # "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT # LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS # FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE # COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, # INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES # (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR # SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) # HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, # STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED # OF THE POSSIBILITY OF SUCH DAMAGE. D=`date` echo "Dear ILT Operations,\n\n DE601 in Effelsberg has been shut down to SWLEVEL 0, all users have been logged\nout, and the station is ready to be brought back to ILT mode.\n\nThe Effelsberg LOFAR Operations group\nlofar-ops@mpifr-bonn.mpg.de\n" | mail -s "DE601Effelsberg ready for ILT mode $D" lofar-ops@astron.nl observer@astron.nl lofar-ops@mpifr-bonn.mpg.de echo "Dear Effelsberg LOFAR Station User,\n\n DE601 in Effelsberg has been shut down to SWLEVEL 0, all users have been logged\nout, and the station being brought back to ILT mode.\n\nThe Effelsberg LOFAR Operations group\nlofar-ops@mpifr-bonn.mpg.de\n" | mail -s "DE601Effelsberg going to ILT mode $D" lofar-station-users@lists.mpifr-bonn.mpg.de