source: trunk/packs/glue/mozilla.sh @ 17875

Revision 17875, 418 bytes checked in by ghudson, 22 years ago (diff)
Add mozilla glue script a la netscape.
Line 
1#!/bin/sh
2# $Id: mozilla.sh,v 1.1 2002-09-10 16:09:17 ghudson Exp $
3
4localscript=/var/athena/infoagents/arch/share/bin/mozilla.adjusted
5if [ -x $localscript ]; then
6  locker=`/bin/athena/attach -np infoagents`
7  if [ -f "$locker/.nolocal" ]; then
8    exec /bin/athena/attachandrun infoagents mozilla "$0" "$@"
9  else
10    exec $localscript "$@"
11  fi
12else
13  exec /bin/athena/attachandrun infoagents mozilla "$0" "$@"
14fi
Note: See TracBrowser for help on using the repository browser.