Skip to content
Permalink
a018d40fc7
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 14 lines (12 sloc) 437 Bytes
#! /usr/bin/bash
if [ "$(/usr/sbin/checktrust)" = "not trusted" ]; then
mkdir -p /node/issue.d
cat > /node/issue.d/notrust.issue <<EOF
** WARNING: Loss of trust detected **
** Looks like your machine lost the trust of our network. Maybe it was offline for too long. **
** You won't be able to log in. **
** Please contact IT Helpdesk: <helpdesk@molgen.mpg.de>, phone: -1708 **
EOF
else
rm -f /node/issue.d/notrust.issue
fi