Skip to content

Commit f0b00fc

Browse files
author
Milan Pssler
committed
release v0.1.3
1 parent 7204ebf commit f0b00fc

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

README.md

+7-3
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The HopGlass Server collects data from Freifunk networks and processes it to be
99

1010
**i.e. Debian Jessie or newer, Ubuntu 15.04 or newer**
1111

12-
1. Run `# wget https://raw.githubusercontent.com/hopglass/hopglass-server/v0.1.2/scripts/bootstrap.sh; bash bootstrap.sh; rm bootstrap.sh`
12+
1. Run `# wget https://raw.githubusercontent.com/hopglass/hopglass-server/v0.1.3/scripts/bootstrap.sh; bash bootstrap.sh; rm bootstrap.sh`
1313
2. Review and edit the default configuration located at `/etc/hopglass-server/default/config.json`.
1414
3. Start the HopGlass Server: `# systemctl start hopglass-server@default`
1515
4. (Optional) Automatically start the HopGlass Server at boot: `# systemctl enable hopglass-server@default`
@@ -64,7 +64,7 @@ Possible webserver queries
6464

6565
- bugfix release
6666

67-
**v0.1.2 (current)**
67+
**v0.1.2 (outdated)**
6868

6969
- many bugfixes (many contributors)
7070
- additional input checks (Joshua1337, eberhab)
@@ -73,6 +73,10 @@ Possible webserver queries
7373
- new provider: dns zone output (eberhab)
7474
- probably more I forgot
7575

76+
**v0.1.3 (current)**
77+
78+
- fix the install script
79+
7680
**v0.2 (next)**
7781

7882
- provide a graph-generation implementation for all providers
@@ -99,7 +103,7 @@ i.e. Debian Wheezy or older, Ubuntu 14.10 or older
99103

100104
***Warning: untested, unsupported, not recommended***
101105

102-
1. Run `# wget https://raw.githubusercontent.com/hopglass/hopglass-server/v0.1.2/scripts/bootstrap.sh; bash bootstrap.sh; rm bootstrap.sh`
106+
1. Run `# wget https://raw.githubusercontent.com/hopglass/hopglass-server/v0.1.3/scripts/bootstrap.sh; bash bootstrap.sh; rm bootstrap.sh`
103107
2. Create a start script in `/usr/local/bin/` similar to this:
104108
`su - hopglass --shell /bin/bash -c "cd server; node hopglass-server.js --config /etc/hopglass-server/$1/config.json"`
105109
3. Create an init-script in `/etc/init.d/`.

scripts/bootstrap.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ function prereq {
107107
function install {
108108
#Clone and install NodeJS libs
109109
su - hopglass --shell /bin/bash <<'EOF'
110-
git clone https://github.com/hopglass/hopglass-server -b v0.1.2 server
110+
git clone https://github.com/hopglass/hopglass-server -b v0.1.3 server
111111
cd server
112112
npm install
113113
exit

0 commit comments

Comments
 (0)