From f0b00fc07cbd4b230e19d0a312c812678896cb44 Mon Sep 17 00:00:00 2001 From: Milan Pssler Date: Thu, 8 Sep 2016 21:15:43 +0200 Subject: [PATCH] release v0.1.3 --- README.md | 10 +++++++--- scripts/bootstrap.sh | 2 +- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index c93f1c2..bb6abd8 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ The HopGlass Server collects data from Freifunk networks and processes it to be **i.e. Debian Jessie or newer, Ubuntu 15.04 or newer** -1. Run `# wget https://raw.githubusercontent.com/hopglass/hopglass-server/v0.1.2/scripts/bootstrap.sh; bash bootstrap.sh; rm bootstrap.sh` +1. Run `# wget https://raw.githubusercontent.com/hopglass/hopglass-server/v0.1.3/scripts/bootstrap.sh; bash bootstrap.sh; rm bootstrap.sh` 2. Review and edit the default configuration located at `/etc/hopglass-server/default/config.json`. 3. Start the HopGlass Server: `# systemctl start hopglass-server@default` 4. (Optional) Automatically start the HopGlass Server at boot: `# systemctl enable hopglass-server@default` @@ -64,7 +64,7 @@ Possible webserver queries - bugfix release -**v0.1.2 (current)** +**v0.1.2 (outdated)** - many bugfixes (many contributors) - additional input checks (Joshua1337, eberhab) @@ -73,6 +73,10 @@ Possible webserver queries - new provider: dns zone output (eberhab) - probably more I forgot +**v0.1.3 (current)** + +- fix the install script + **v0.2 (next)** - provide a graph-generation implementation for all providers @@ -99,7 +103,7 @@ i.e. Debian Wheezy or older, Ubuntu 14.10 or older ***Warning: untested, unsupported, not recommended*** -1. Run `# wget https://raw.githubusercontent.com/hopglass/hopglass-server/v0.1.2/scripts/bootstrap.sh; bash bootstrap.sh; rm bootstrap.sh` +1. Run `# wget https://raw.githubusercontent.com/hopglass/hopglass-server/v0.1.3/scripts/bootstrap.sh; bash bootstrap.sh; rm bootstrap.sh` 2. Create a start script in `/usr/local/bin/` similar to this: `su - hopglass --shell /bin/bash -c "cd server; node hopglass-server.js --config /etc/hopglass-server/$1/config.json"` 3. Create an init-script in `/etc/init.d/`. diff --git a/scripts/bootstrap.sh b/scripts/bootstrap.sh index 0f0cb64..1f63ee4 100755 --- a/scripts/bootstrap.sh +++ b/scripts/bootstrap.sh @@ -107,7 +107,7 @@ function prereq { function install { #Clone and install NodeJS libs su - hopglass --shell /bin/bash <<'EOF' - git clone https://github.com/hopglass/hopglass-server -b v0.1.2 server + git clone https://github.com/hopglass/hopglass-server -b v0.1.3 server cd server npm install exit