aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeLines
...
* Merge branch 'master' of github.com:gathering/gondulKristian Lyngstol2019-02-13-198/+468
|\
| * Copy current schema.sql to ansible roleLasse Haugen2019-02-13-168/+277
| |
| * Merge pull request #201 from slinderud/masterLasse Haugen2019-02-13-30/+191
| |\ | | | | | | #159 Fixed templating install, included updated varnish config, updated installing.rst and clean-up on servicefiles
| | * newline fuckupsLasse Haugen2019-02-12-0/+2
| | |
| | * service file cleanupLasse Haugen2019-02-12-14/+8
| | |
| | * Update service fileLasse Haugen2019-02-12-17/+3
| | |
| | * removed copy-paste stuff from service fileslinderud2019-02-12-3/+0
| | |
| | * moved from pip to aptslinderud2019-02-12-5/+2
| | |
| | * merged changesslinderud2019-02-12-8/+25
| | |\
| | | * renamed serviceLasse Haugen2019-02-12-16/+1
| | | |
| | | * Added path to templatesLasse Haugen2019-02-12-0/+15
| | | |
| | | * added newlinesLasse Haugen2019-02-12-2/+4
| | | |
| | | * Merge branch 'master' of github.com:slinderud/gondulLasse Haugen2019-02-12-19/+187
| | | |\ | | | |/ | | |/|
| | * | fixed templateing install and service file, updated install documentation ↵slinderud2019-02-10-19/+187
| | | | | | | | | | | | | | | | and included new varnish vcl file
* | | | Add simple test-collecter.sh to inject collector-dataKristian Lyngstol2019-02-13-0/+47
|/ / /
* | | read/oplog: Shut up, perlKristian Lyngstol2019-02-13-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28. \1 better written as $1 at /opt/gondul/web/api/read/oplog line 28.
* | | Add basic collector-implementationKristian Lyngstol2019-02-13-4/+132
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | References #195 This is the first dumb-ass implementation of the collector-api. It actually works fine for write AS IS, but has 0 safties. But I'm thinking the API itself is reasonably stable and ready for testing. I will need to extend it for dhcp-specific stuff, and the plan is to create a secondary table with metadata (hidden from the user) and a few other nice things. Also, indexes. We need indexes. Obviously.
* | | Front + api: Fix parsing of JSON-fields for switchesKristian Lyngstol2019-02-13-38/+34
| |/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sort of. It's two issues at once, related: 1. API: The problem here was that the old way of updating tags simply didn't use actual JSON, but just sent "'foo','bar','baz'" as a text string. This seems dumb so I've made it send actual JSON now - just like the "placement" field. This meant updating the API. And it's not pretty, but it works. 2. Front: I've simplified nms-types a bit (hopefully to provide to simple methods: either get/set the raw value, or get/set strings. There was a bug where we sent text-encoded json instead of real json, and the reason was a confusion between when we're dealing with JSON and when we're dealing with strings. Now we are explicit. This makes the nmsEditRow-thing slightly uglier, but it needs to be fixed properly either way. In the future, we should provide renderers and editors based on types, e.g.: Placement-editor could start as a general-purpose JSON-editor, and the "switch reference" should be a drop-down.... etc. Fixes #202
* | front: Tweak legacy info-box size....Kristian Lyngstol2019-02-11-2/+2
| | | | | | | | God I hate this...
* | front: Switch editing: Don't nest panel-body elementsKristian Lyngstol2019-02-11-1/+1
| | | | | | | | It creates an extra margin that serves no purpose but to take up space.
* | Merge branch 'master' of github.com:gathering/gondulKristian Lyngstol2019-02-11-2/+2
|\ \
| * | Update INSTALLING.rstLasse Haugen2019-02-11-1/+1
| |/
| * changed to the correct repoLasse Haugen2019-02-05-1/+1
| |
* | front: Update switch-moving to use correct APIKristian Lyngstol2019-02-11-1/+1
|/
* VCL/Varnish: Rewrite/order varnish VCLKristian Lyngstol2019-02-04-43/+126
|
* Merge branch 'master' of github.com:tech-server/gondulKristian Lyngstol2019-01-29-167/+420
|\
| * gondul-receiver: Emphasise the limitations of the first implementationKristian Lyngstol2019-01-24-0/+3
| |
| * docs/gondul-receiver.rst: Minor style fixesKristian Lyngstol2019-01-24-9/+8
| |
| * Minor tweaks on gondul-git-splitKristian Lyngstol2019-01-24-12/+10
| |
| * Add gondul-receiver.rst docKristian Lyngstol2019-01-24-0/+183
| |
| * Markdown editsSimen Linderud2019-01-23-0/+4
| |
| * Add document for git-splitKristian Lyngstol2019-01-23-0/+60
| | | | | | | | | | | | Bah, forgot to use English. Use google translate if you so require.
| * Merge pull request #200 from Foxboron/foxboron/template-rewriteKristian Lyngstøl2019-01-23-105/+85
| |\ | | | | | | Added slight rewrite of template webserver
| | * Removed `PUT` from `POST` methodMorten Linderud2019-01-22-1/+1
| | | | | | | | | | | | | | | Although nice to have, this isn't compatible with the implementation of the web service.
| | * Added python 3.5 compatible string formattingMorten Linderud2019-01-22-5/+5
| | |
| | * Added slight rewrite of template webserverMorten Linderud2019-01-21-105/+85
| |/ | | | | | | | | | | Moved to flask for more "free" things. Possibly easier to extend in the future. Added argparser so we are able to define settings from the command line.
| * Use ::1 instead of localhost to avoid multiple IPsKristian Lyngstol2019-01-21-2/+2
| | | | | | | | Fixes #193
| * Merge pull request #194 from lasseh/masterSimen Linderud2019-01-19-64/+72
| |\ | | | | | | Update ansible play for Debian 9
| | * Moved git install before git pullLasse Haugen2019-01-19-7/+7
| | |
| | * change to apt moduleLasse Haugen2019-01-14-7/+7
| | |
| | * Install basic packagesLasse Haugen2019-01-14-0/+9
| | |
| | * newline fixLasse Haugen2019-01-14-1/+1
| | |
| | * some ansible-lint fixesLasse Haugen2019-01-14-10/+19
| | |
| | * Change to new ansible styleLasse Haugen2019-01-14-36/+33
| | |
| | * Removed dupicatesLasse Haugen2019-01-14-3/+0
| | |
| | * Merge branch 'master' of github.com:tech-server/gondulLasse Haugen2019-01-14-0/+18
| | |\ | | |/ | |/|
| * | Merge pull request #192 from slinderud/postgres-ansible-bugKristian Lyngstøl2019-01-14-0/+18
| |\ \ | | | | | | | | Fixes ansible and postgres user premission error
| | * | Fixed ansible postgres bugslinderud2019-01-13-0/+18
| |/ /
| | * Change to new ansible styleLasse Haugen2019-01-14-5/+1
| | |
| | * changed to 9.6Lasse Haugen2019-01-13-5/+5
| | |