source: trunk/third/xntp/scripts/hpadjtime.sh @ 10832

Revision 10832, 302 bytes checked in by brlewis, 27 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r10831, which included commits to RCS files with non-trunk default branches.
  • Property svn:executable set to *
Line 
1#! /bin/sh
2val=1
3if [ -f /bin/uname -o -f /usr/bin/uname ]; then
4        set `uname -a | tr '[A-Z]' '[a-z]'`
5        case "$1" in
6                hp-ux)  case "$3" in
7                        *.10.*) val=1 ;;
8                        *.09.03 | *.09.10) case "$5" in
9                                9000/3*) val=1 ;;
10                                *)       val=0 ;;
11                                esac ;;
12                        *) val=0 ;;
13                        esac
14                        ;;
15        *)
16        esac
17fi
18exit $val
Note: See TracBrowser for help on using the repository browser.