-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathsetup-demo
executable file
·37 lines (31 loc) · 1.43 KB
/
setup-demo
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/bin/bash
# Copyright 2015 The Project Buendia Authors
#
# Licensed under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy
# of the License at: http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software distrib-
# uted under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES
# OR CONDITIONS OF ANY KIND, either express or implied. See the License for
# specific language governing permissions and limitations under the License.
set -e
cd $(dirname $0)
setup_ssid_psk=$1
repo_url=${REPO_URL:-http://packages.projectbuendia.org:9001}
if [ "$1" = "-h" -o ! -n "$setup_ssid_psk" ]; then
echo "
Usage: $0 <ssid>[:<psk-password>]
Completely erases an Edison and sets it up as a demo Buendia server.
<setup-ssid> should be a network with Internet access that the Edison
will use during this setup process to download and install software.
It can be a wifi network with no password or with a WPA-PSK password.
The result will be a server with the root password 'buendia-demo',
which when powered up becomes a wifi AP, creates a wifi network named
'buendia-demo' with the WPA-PSK password 'buendia-demo', and starts up
OpenMRS at the root URL 'http://server:9000/' with the OpenMRS
username 'buendia' and password 'buendia'.
"
exit 1
fi
devices/server/setup buendia-demo $setup_ssid_psk demo