security.d/chk_uptime

changeset 17
65656789da08
parent 16
37f217a8bcce
child 18
2b7620bf17e6
equal deleted inserted replaced
16:37f217a8bcce 17:65656789da08
1 #!/bin/bash
2 #
3 #############################################################################
4 # Copyright (C) 2005-2012
5 #
6 # Michiel Broek <mbse@mbse.dds.nl>
7 # the Netherlands
8 #
9 # This file is part of SlackSecCheckScripts.
10 #
11 # This package is free software; you can redistribute it and/or modify it
12 # under the terms of the GNU General Public License as published by the
13 # Free Software Foundation; either version 2, or (at your option) any
14 # later version.
15 #
16 # SlackSecCheckScripts is distributed in the hope that it will be useful, but
17 # WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
19 # General Public License for more details.
20 #
21 # You should have received a copy of the GNU General Public License
22 # along with MBSE BBS; see the file COPYING. If not, write to the Free
23 # Software Foundation, 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
24 #############################################################################
25
26 PATH=/sbin:/usr/sbin:/bin:/usr/bin
27
28 umask 077
29 TZ=UTC; export TZ
30 LANG=C; export LANG
31
32 SECUREDIR=`mktemp -d /tmp/_securedir.XXXXXX` || exit 1
33
34 trap "/bin/rm -rf $SECUREDIR ; exit 0" EXIT INT QUIT PIPE
35
36 if ! cd "$SECUREDIR"; then
37 echo "Can not cd to $SECUREDIR".
38 exit 1
39 fi
40
41 printf "\nUptime: "
42 uptime
43

mercurial