source: opsi/server/opsi-tools-dass-it/usr/bin/opsiws.sh @ 1042

Last change on this file since 1042 was 1042, checked in by joergs, 11 years ago

opsi tools

  • Property svn:executable set to *
File size: 302 bytes
Line 
1#!/bin/sh
2
3#URL=${1:-https://opsi4.joergs.dass-it:4447/configed.jnlp}
4
5case "$1" in
6    http://*|https://*)
7        URL=$1
8        ;;
9    "")
10        URL=https://opsi4.joergs.dass-it:4447/configed.jnlp
11        ;;
12    *)
13        URL=https://$1:4447/configed.jnlp
14        ;;
15esac
16
17echo $URL
18javaws $URL
19
Note: See TracBrowser for help on using the repository browser.