An error occurred fetching the project authors.
- 06 Oct, 2017 1 commit
-
-
Julien Muchembled authored
-
- 27 Sep, 2017 1 commit
-
-
Kazuhiko Shiozaki authored
-
- 26 Sep, 2017 1 commit
-
-
Alain Takoudjou authored
-
- 13 Sep, 2017 1 commit
-
-
Rafael Monnerat authored
There is no reason to git clone by default, as slapos.cookbook should be developed independently. Anyone an include develop, locally, to test on the edge changes, or include local modification when they use webrunner or a development server.
-
- 12 Sep, 2017 1 commit
-
-
Rafael Monnerat authored
-
- 01 Sep, 2017 1 commit
-
-
Kazuhiko Shiozaki authored
-
- 18 Aug, 2017 1 commit
-
-
Rafael Monnerat authored
-
- 12 Jun, 2017 2 commits
-
-
Kazuhiko Shiozaki authored
-
Julien Muchembled authored
-
- 03 Jun, 2017 1 commit
-
-
Julien Muchembled authored
-
- 02 Jun, 2017 1 commit
-
-
Rafael Monnerat authored
-
- 26 May, 2017 1 commit
-
-
Julien Muchembled authored
This fixes the following error: slapos-kill: error: unrecognized arguments: -l /srv/slapgrid/slappart38/var/log/neostorage-0.log
-
- 11 May, 2017 3 commits
-
-
Julien Muchembled authored
-
Julien Muchembled authored
It was not working with wrappers to work around shebang length limitation.
-
Julien Muchembled authored
-
- 18 Apr, 2017 1 commit
-
-
Rafael Monnerat authored
-
- 03 Apr, 2017 1 commit
-
-
Rafael Monnerat authored
-
- 23 Mar, 2017 2 commits
-
-
Julien Muchembled authored
This fixes a regression introduced in commit aa5aa9e8. plugin-load loads plugins in the given order and stops (without exiting) on the first one that is missing. ha_rocksdb must be listed last because it's only there when using experimental MariaDB 10.2
-
Kazuhiko Shiozaki authored
Signed-off-by: Julien Muchembled <jm@nexedi.com>
-
- 13 Mar, 2017 2 commits
-
-
Julien Muchembled authored
-
Kazuhiko Shiozaki authored
-
- 06 Mar, 2017 2 commits
-
-
Julien Muchembled authored
-
Julien Muchembled authored
We'll probably change the protocol to use msgpack instead of trees of Python structs. By adding the dependency now, it will be possible to update the NEO code (which is in development mode) without rebuilding the whole software.
-
- 23 Feb, 2017 1 commit
-
-
Alain Takoudjou authored
-
- 16 Feb, 2017 1 commit
-
-
Vincent Pelletier authored
When a process is stopped: - it may not have emitted logs since previous rotation: add "missingok" As a direct consequence: stop using logrotate recipe. - its pid file (if applicable) may be missing: test its non-empty presence before calling slapos-kill Also, stop using slapos.cookbook:logrotate. Update obvious users (cloudooo, neoppod, erp5, monitor, re6stnet).
-
- 07 Feb, 2017 1 commit
-
-
Julien Muchembled authored
-
- 02 Feb, 2017 1 commit
-
-
Kazuhiko Shiozaki authored
-
- 31 Jan, 2017 1 commit
-
-
Alain Takoudjou authored
-
- 18 Jan, 2017 2 commits
-
-
Julien Muchembled authored
-
Vincent Pelletier authored
Needed by ERP5 software release.
-
- 11 Jan, 2017 1 commit
-
-
Kazuhiko Shiozaki authored
-
- 09 Jan, 2017 1 commit
-
-
Alain Takoudjou authored
-
- 30 Dec, 2016 1 commit
-
-
Alain Takoudjou authored
-
- 16 Dec, 2016 1 commit
-
-
Iliya Manolov authored
The purpose of the added script is to shorten calling neoctl by removing the need to constantly supply things SlapOS can provide on its own like certificates and admin address. A sample command is now as simple as: ~/srv/runner/instance/slappartX/bin/neoctl set cluster STARTING_BACKUP /reviewed-on nexedi/slapos!120
-
- 13 Dec, 2016 1 commit
-
-
Kirill Smelkov authored
This reverts commit 7f6729de. ZODB has been switched to ZODB4 in 447b27e6 (Switch from ZODB3 (3.10.7) to ZODB (4.4.4)) including raising transaction version requirement to 1.7.0 so we can try to introduce zodbtools one more time. /proposed-for-review-on !121
-
- 08 Dec, 2016 1 commit
-
-
Kazuhiko Shiozaki authored
-
- 05 Dec, 2016 1 commit
-
-
Julien Muchembled authored
-
- 17 Nov, 2016 3 commits
-
-
Kirill Smelkov authored
This reverts commit ae808179. Reason for revert: zodbtools depend on ZODB while currently neoppod & erp5 are depending on `ZODB3 = 3.10` so upon installing both ZODB3 and ZODB are installed. Together with our requirement stack/erp5/zope-versions.cfg:transaction = 1.1.1 This creates version conflict and installation fails: 2016-11-17 14:56:35,858 testsuite : INFO slapgrid_sr : 2016-11-17 14:56:35 slapos[3698] INFO The version, 1.1.1, is not consistent with the requirement, 'transaction>=1.6.1'. 2016-11-17 14:56:35,937 testsuite : INFO slapgrid_sr : 2016-11-17 14:56:35 slapos[3698] INFO While: 2016-11-17 14:56:35,937 testsuite : INFO slapgrid_sr : 2016-11-17 14:56:35 slapos[3698] INFO Installing neoppod. 2016-11-17 14:56:35,937 testsuite : INFO slapgrid_sr : 2016-11-17 14:56:35 slapos[3698] INFO Error: Bad version 1.1.1 So revert zodbtools hooking for now until we upgrade our ZODB to ZODB > 3.
-
Julien Muchembled authored
-
Kirill Smelkov authored
As advised by @Tyagov this adds zodbutils egg [1,2] to our software stack: both NEO and ERP5 (since stack/erp5/ inherits from neoppod/software-common.cfg) I have not build-tested this patch but I hope it should be ok. /cc @nexedi [1] https://lab.nexedi.com/nexedi/zodbtools [2] https://pypi.python.org/pypi/zodbtools /reviewed-on nexedi/slapos!116
-