~ubuntu-branches/ubuntu/utopic/gridengine/utopic

« back to all changes in this revision

Viewing changes to source/dist/util/resources/loadsensors/sgi_tty_sensor.sh

  • Committer: Bazaar Package Importer
  • Author(s): Mark Hymers
  • Date: 2008-06-25 22:36:13 UTC
  • Revision ID: james.westby@ubuntu.com-20080625223613-tvd9xlhuoct9kyhm
Tags: upstream-6.2~beta2
ImportĀ upstreamĀ versionĀ 6.2~beta2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
#
 
3
#___INFO__MARK_BEGIN__
 
4
##########################################################################
 
5
#
 
6
#  The Contents of this file are made available subject to the terms of
 
7
#  the Sun Industry Standards Source License Version 1.2
 
8
#
 
9
#  Sun Microsystems Inc., March, 2001
 
10
#
 
11
#
 
12
#  Sun Industry Standards Source License Version 1.2
 
13
#  =================================================
 
14
#  The contents of this file are subject to the Sun Industry Standards
 
15
#  Source License Version 1.2 (the "License"); You may not use this file
 
16
#  except in compliance with the License. You may obtain a copy of the
 
17
#  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
18
#
 
19
#  Software provided under this License is provided on an "AS IS" basis,
 
20
#  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
21
#  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
22
#  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
23
#  See the License for the specific provisions governing your rights and
 
24
#  obligations concerning the Software.
 
25
#
 
26
#  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
27
#
 
28
#  Copyright: 2001 by Sun Microsystems, Inc.
 
29
#
 
30
#  All Rights Reserved.
 
31
#
 
32
##########################################################################
 
33
#___INFO__MARK_END__
 
34
#
 
35
# load sensor script for SGI-IRIX platform
 
36
#
 
37
# returns load value "iidle" as seconds of inactivity on tty's. Can be used
 
38
# to start computations on workstations with users logged in, but idle
 
39
#
 
40
# Do not forget to add the "iidle" complex value to to your "host" complex
 
41
# and to add a load threshold in your queues.
 
42
#
 
43
# The line in the host complex should be defined as follows ("shortcut" and
 
44
# "requestable" can be defined differently)
 
45
#
 
46
# name  shortcut   type   value    relop requestable consumable default
 
47
# iidle iidle      INT    INFINITY <=    NO          NO         0
 
48
#
 
49
# Be careful: Load sensor scripts are started with root permissions.
 
50
# In an admin_user system euid=0 and uid=admin_user
 
51
#
 
52
#___INFO__MARK_BEGIN__
 
53
##########################################################################
 
54
#
 
55
#  The Contents of this file are made available subject to the terms of
 
56
#  the Sun Industry Standards Source License Version 1.2
 
57
#
 
58
#  Sun Microsystems Inc., March, 2001
 
59
#
 
60
#
 
61
#  Sun Industry Standards Source License Version 1.2
 
62
#  =================================================
 
63
#  The contents of this file are subject to the Sun Industry Standards
 
64
#  Source License Version 1.2 (the "License"); You may not use this file
 
65
#  except in compliance with the License. You may obtain a copy of the
 
66
#  License at http://gridengine.sunsource.net/Gridengine_SISSL_license.html
 
67
#
 
68
#  Software provided under this License is provided on an "AS IS" basis,
 
69
#  WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
 
70
#  WITHOUT LIMITATION, WARRANTIES THAT THE SOFTWARE IS FREE OF DEFECTS,
 
71
#  MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE, OR NON-INFRINGING.
 
72
#  See the License for the specific provisions governing your rights and
 
73
#  obligations concerning the Software.
 
74
#
 
75
#  The Initial Developer of the Original Code is: Sun Microsystems, Inc.
 
76
#
 
77
#  Copyright: 2001 by Sun Microsystems, Inc.
 
78
#
 
79
#  All Rights Reserved.
 
80
#
 
81
##########################################################################
 
82
#___INFO__MARK_END__
 
83
 
 
84
PATH=/bin:/usr/bin
 
85
 
 
86
ARCH=`$SGE_ROOT/util/arch`
 
87
HOST=`$SGE_ROOT/utilbin/$ARCH/gethostname -name`
 
88
FILESTAT=$SGE_ROOT/utilbin/$ARCH/filestat
 
89
 
 
90
end=false
 
91
while [ $end = false ]; do
 
92
   read input
 
93
   result=$?
 
94
   if [ $result != 0 ]; then
 
95
      end=true
 
96
      break
 
97
   fi
 
98
 
 
99
   if [ "$input" = "quit" ]; then
 
100
      end=true
 
101
      break
 
102
   fi
 
103
 
 
104
   ACTIVETTYS=`/usr/bsd/w -h | awk '{print "/dev/tty"$2}' `
 
105
   LASTTTY=`ls -1t $ACTIVETTYS | head -1`
 
106
   TIMEOFLASTTTY=`$SGE_ROOT/utilbin/$ARCH/filestat -mtime $LASTTTY`
 
107
   TIMENOW=`$SGE_ROOT/utilbin/$ARCH/now`
 
108
   DIFF=`expr $TIMENOW - $TIMEOFLASTTTY`
 
109
 
 
110
   echo "begin"
 
111
   echo "$HOST:iidle:$DIFF"
 
112
   echo "end"
 
113
 
 
114
done