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

« back to all changes in this revision

Viewing changes to source/dist/util/resources/loadsensors/calendar.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
#
 
36
# example for a load sensor script
 
37
#
 
38
# Be careful: Load sensor scripts are started with root permissions.
 
39
# In an admin_user system euid=0 and uid=admin_user
 
40
#
 
41
 
 
42
PATH=/bin:/usr/bin
 
43
 
 
44
ls_log_file=/tmp/ls.dbg
 
45
 
 
46
# uncomment this to log load sensor startup  
 
47
# touch $ls_log_file
 
48
# echo `date`:$$:I:load sensor `basename $0` started >> $ls_log_file
 
49
 
 
50
end=false
 
51
while [ $end = false ]; do
 
52
 
 
53
   # ---------------------------------------- 
 
54
   # wait for an input
 
55
   #
 
56
   read input
 
57
   result=$?
 
58
   if [ $result != 0 ]; then
 
59
      echo "read returned != 0"
 
60
      end=true
 
61
   fi
 
62
   if [ "$input" = "quit" ]; then
 
63
      end=true
 
64
      break
 
65
   fi
 
66
 
 
67
   # ----------------------------------------
 
68
   # send mark for begin of load report
 
69
   echo "begin"
 
70
 
 
71
   # ---------------------------------------- 
 
72
   # send load value day
 
73
   #
 
74
   day=`date | cut -f1 -d" "`
 
75
   echo "global:day:$day"
 
76
 
 
77
   # ---------------------------------------- 
 
78
   # send load value month
 
79
   #
 
80
   month=`date | cut -f2 -d" "`
 
81
   echo "global:month:$month"
 
82
 
 
83
   # ---------------------------------------- 
 
84
   # send load value weekend
 
85
   #
 
86
   weekend=false
 
87
   if [ $day = Sat -o $day = Sun ]; then
 
88
      weekend=true
 
89
   fi
 
90
   echo "global:weekend:$weekend"
 
91
 
 
92
   # ----------------------------------------
 
93
   # send mark for end of load report
 
94
   echo "end"
 
95
 
 
96
done
 
97
 
 
98
# echo `date`:$$:I:load sensor `basename $0` exiting >> $ls_log_file