Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [master] Tear down FS between cron jobs (#26223) | Vincent Petry | 2016-10-12 | 1 | -0/+2 |
| | | | | | | | | | | | Because some cron jobs do not always properly clean up their FS usage and others might not clean up before setting up the FS, this could cause potential side effects. To make sure we exclude side effects, we tear down the FS between cron jobs. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> | ||||
* | Allow to call the files even when you are in another instance atm | Joas Schilling | 2016-10-06 | 1 | -1/+1 |
| | | | | Signed-off-by: Joas Schilling <coding@schilljs.com> | ||||
* | log class name, ID only is hard to debug | Jörn Friedrich Dreyer | 2016-08-09 | 1 | -2/+2 |
| | |||||
* | introduce NEXTCLOUD_CONFIG_DIR env variable (see #300) | Damjan Georgievski | 2016-07-29 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | nextcloud by default uses the `/config/` directory in the source/application tree for its config file(s). with this commit that directory can be overridden by the `NEXTCLOUD_CONFIG_DIR` environment variable. in uwsgi, you would use the option `--env "NEXTCLOUD_CONFIG_DIR=/tmp/nx-config/"` in apache `SetENV …` and the cli command can be run with: `NEXTCLOUD_CONFIG_DIR=/tmp/nx-config ./occ` (or just use `export` once in the shell). NEXTCLOUD_CONFIG_DIR can be supplied with or without the trailing slash (`/`), but in all cases `$configDir` will have it automatically added if needed. The other changes are several occurrences of `OC::$SERVERROOT . '/config'` to `OC::$configDir`. | ||||
* | Update with robin | Joas Schilling | 2016-07-21 | 1 | -1/+1 |
| | |||||
* | Fix others | Joas Schilling | 2016-07-21 | 1 | -2/+3 |
| | |||||
* | Remove unneeded checks if it runs on a Windows machine | Morris Jobke | 2016-07-08 | 1 | -13/+11 |
| | | | | * the setup check is still there | ||||
* | Update license headers | Lukas Reschke | 2016-05-26 | 1 | -1/+0 |
| | |||||
* | Do not lock the cron anymore so we can have multiple workers | Joas Schilling | 2016-05-21 | 1 | -27/+0 |
| | |||||
* | Lock jobs while executing them, to allow multiple executors to run in parallel | Joas Schilling | 2016-05-21 | 1 | -0/+1 |
| | |||||
* | Make sure that CLI cron doesn't run for ever, but makes use of the next spawn | Joas Schilling | 2016-04-21 | 1 | -0/+8 |
| | |||||
* | Catch class Error on all root entrypoints | Thomas Müller | 2016-04-20 | 1 | -0/+2 |
| | |||||
* | Do not create a loop that generates thousands of jobs | Joas Schilling | 2016-01-28 | 1 | -2/+11 |
| | |||||
* | Happy new year! | Thomas Müller | 2016-01-12 | 1 | -1/+1 |
| | |||||
* | Add debug log statement for IJobList steps in cron.php | Morris Jobke | 2015-11-06 | 1 | -0/+2 |
| | | | | * makes debugging easier | ||||
* | Replace some OC_Config calls with ILogger methods | Morris Jobke | 2015-10-30 | 1 | -2/+2 |
| | |||||
* | update licence headers via script | Morris Jobke | 2015-10-05 | 1 | -0/+2 |
| | |||||
* | Minor text typos | Phil Davis | 2015-09-21 | 1 | -1/+1 |
| | | | | that I noticed while looking at some code. | ||||
* | Add a session wrapper to encrypt the data before storing it on disk | Joas Schilling | 2015-08-21 | 1 | -1/+4 |
| | |||||
* | Remove OC_Log | Thomas Müller | 2015-07-03 | 1 | -1/+1 |
| | |||||
* | Removed OC_BackgroundJob - reduce class overhead | Morris Jobke | 2015-04-18 | 1 | -2/+2 |
| | | | | * method code is now in the static public namespace (5 sloc) | ||||
* | block cron when in single user mode | Robin Appelman | 2015-04-09 | 1 | -0/+5 |
| | |||||
* | Cron has to be executed with the correct user - fixes 13912 and others | Thomas Müller | 2015-04-01 | 1 | -0/+16 |
| | |||||
* | Update license headers | Jenkins for ownCloud | 2015-03-26 | 1 | -12/+20 |
| | |||||
* | cron shall not operate in case we are in maintenance mode - fixes #14843 | Thomas Müller | 2015-03-12 | 1 | -1/+5 |
| | |||||
* | cron.php on cli has no time limitation - fixes #14481 | Thomas Müller | 2015-03-11 | 1 | -0/+3 |
| | |||||
* | Revert "Updating license headers" | Morris Jobke | 2015-02-26 | 1 | -20/+12 |
| | | | | This reverts commit 6a1a4880f0d556fb090f19a5019fec31916f5c36. | ||||
* | use flock instead of just checking if there is a file to prevent deadlocks ↵ | Bernhard Posselt | 2015-02-24 | 1 | -44/+29 |
| | | | | | | | | | | | | | | when the process crashed or the unlink wasnt done move cron.lock into top directory to prevent external storage issues use tmp directory lock file use new config interface incorporate #13770 add dots | ||||
* | Updating license headers | Jenkins for ownCloud | 2015-02-23 | 1 | -13/+20 |
| | |||||
* | Use the TempManager to handle temporary files | Robin Appelman | 2014-10-24 | 1 | -2/+1 |
| | |||||
* | move some deprecated usage of OC_Config and OC_AppConfig to \OC::server | Thomas Müller | 2014-10-20 | 1 | -3/+3 |
| | |||||
* | add proper End of Line character | Morris Jobke | 2014-08-31 | 1 | -1/+1 |
| | |||||
* | kill OC::$session | Jörn Friedrich Dreyer | 2014-08-29 | 1 | -2/+2 |
| | | | | | | | | | | | | maintain deprecated \OC::$session when getting or setting the session via the server container or UserSession restore order os OC::$session and OC::$CLI remove unneded initialization of dummy session write back session when $useCustomSession is true log warning when deprecated app is used | ||||
* | Update cron.php | Oliver Kohl D.Sc. | 2014-07-24 | 1 | -2/+1 |
| | |||||
* | CRON call ends in null exception | Oliver Kohl D.Sc. | 2014-07-24 | 1 | -2/+5 |
| | | | | | | | | [error] 4461#0: *186285 FastCGI sent in stderr: "PHP message : PHP Fatal error: Call to a member function execute() on null in /var/www/ownc loud/cron.php on line 125" while reading response header from upstream, client: 217.13.183.252, server: cloud.mycloud.com, request: "GET /cron.php HTTP/1.1", upstre am: "fastcgi://unix:/var/run/php5-fpm.sock:", host: "cloud.mycloud.com", referrer: " https://cloud.mycloud.com/" | ||||
* | Prevent cron.php to trigger apps updating | Vincent Petry | 2014-07-23 | 1 | -0/+5 |
| | |||||
* | Fix indent | Steffen Lindner | 2014-07-02 | 1 | -2/+2 |
| | |||||
* | initialize a dummy memory session - fixes ↵ | Steffen Lindner | 2014-07-02 | 1 | -0/+3 |
| | | | | https://github.com/owncloud/activity/issues/78 | ||||
* | Merge pull request #7107 from owncloud/load-apps-proper-master | Thomas Müller | 2014-03-28 | 1 | -0/+3 |
|\ | | | | | Load apps proper master | ||||
| * | Merge branch 'master' into load-apps-proper-master | Thomas Müller | 2014-03-21 | 1 | -3/+3 |
| |\ | | | | | | | | | | | | | | | | | | | Conflicts: apps/files/ajax/rawlist.php cron.php ocs/v1.php | ||||
| * | | load all apps to get all cron jobs executed | Thomas Müller | 2014-02-18 | 1 | -0/+3 |
| | | | |||||
* | | | Merge branch 'master' of https://github.com/owncloud/core into last_cron_log | kondou | 2014-03-21 | 1 | -1/+1 |
|\ \ \ | | |/ | |/| | |||||
| * | | close the session on all file operations | Thomas Müller | 2014-03-10 | 1 | -1/+1 |
| | | | |||||
* | | | Log last cron execution | kondou | 2014-03-12 | 1 | -0/+4 |
|/ / | | | | | | | Fixes #2012 | ||||
* / | Add the background job list to the public server container | Robin Appelman | 2014-02-11 | 1 | -2/+2 |
|/ | |||||
* | Catch exceptions from background jobs and log them | Robin Appelman | 2013-12-02 | 1 | -2/+4 |
| | |||||
* | fixing typo | Boris Rybalkin | 2013-09-23 | 1 | -1/+1 |
| | | | Typo in comment "feature" => "future" | ||||
* | Add _many_ newlines at the end of files | kondou | 2013-08-18 | 1 | -1/+1 |
| | |||||
* | clean up usage of DatabaseSetupException and catch Exceptions in entrypoints | Jörn Friedrich Dreyer | 2013-06-10 | 1 | -57/+63 |
| | |||||
* | merge master into backgroundjob | Robin Appelman | 2013-06-02 | 1 | -1/+0 |
|\ |