mirror of
git://git.openembedded.org/meta-openembedded
synced 2026-09-16 06:35:05 +00:00
This new version of Gate One uses a new configuration file format which means the old server.conf is gone. It now stores configuration files in /etc/gateone/conf.d. The /opt/gateone directory is also gone and instead the package installs like a regular Python module in site-packages. SSL certificates/keys are stored in /etc/gateone/ssl/. The new version requires python-tornado 3.1.1 (which was submitted earlier today) and the python-futures package (which was also submitted today). An 80oe.conf file has been added specific to OpenEmbedded that replaces the old pre-configured server.conf functionality. The old patch that removes the init script checks has been deprecated by the use of the --skip_init_scripts option which is now being passed to setup.py. Lastly, Gate One 1.2 is about twice as fast (benchmarked) as Gate One 1.1 on the Beaglebone platform. Signed-off-by: Dan McDougall <daniel.mcdougall@liftoffsoftware.com> Signed-off-by: Koen Kooi <koen@dominion.thruhere.net> Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
27 lines
1003 B
Diff
27 lines
1003 B
Diff
From d811d3bdf06d78c93c48bef762c19c392c879077 Mon Sep 17 00:00:00 2001
|
|
From: Koen Kooi <koen@dominion.thruhere.net>
|
|
Date: Tue, 26 Nov 2013 15:54:10 +0100
|
|
Subject: [PATCH] configuration.py: Hack around broken gethostname thingy
|
|
|
|
Signed-off-by: Koen Kooi <koen@dominion.thruhere.net>
|
|
---
|
|
gateone/core/configuration.py | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/gateone/core/configuration.py b/gateone/core/configuration.py
|
|
index da41cbd..d1c8222 100644
|
|
--- a/gateone/core/configuration.py
|
|
+++ b/gateone/core/configuration.py
|
|
@@ -162,7 +162,7 @@ def define_options(installed=True):
|
|
]
|
|
# Used both http and https above to demonstrate that both are acceptable
|
|
try:
|
|
- additional_origins = socket.gethostbyname_ex(socket.gethostname())
|
|
+ additional_origins = [] # additional_origins = socket.gethostbyname_ex(socket.gethostname())
|
|
except socket.gaierror:
|
|
# Couldn't get any IPs from the hostname
|
|
additional_origins = []
|
|
--
|
|
1.8.4.2
|
|
|