summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* consistencybug24416Matthias Radestock2011-09-081-2/+2
|
* do the todoMatthias Radestock2011-09-081-10/+6
|
* Merge bug24387 into defaultSteve Powell2011-09-082-33/+11
|\
| * Merge in defaultbug24387Steve Powell2011-09-087-12/+36
| |\ | |/ |/|
* | Merge bug24393Simon MacMullen2011-09-081-0/+1
|\ \
| * | Set process limit when running as a Windows servicebug24393Emile Joubert2011-09-071-0/+1
|/ /
* | Merge bug24399 into defaultDavid Wragg2011-09-066-12/+35
|\ \ | | | | | | | | | init script assumes the existence of /var/run/rabbitmq
| * | Be consistent about attempting to remove the directory whenever we can; ↵bug24399Matthew Sackman2011-09-063-7/+14
| | | | | | | | | | | | remove purge deletion of var/run which has existed since root of hg repo.
| * | When we stop, wipe out the directory rather than just the pid file. This ↵Matthew Sackman2011-09-062-2/+2
| | | | | | | | | | | | avoids having to worry about how to remove the directory on package uninstall and also has the advantage of helping non-rabbit-packaged distributions
| * | The custom seems to be to ensure the directory is created on startup.Matthew Sackman2011-09-055-5/+21
| | |
| | * don't follow symlinksAlexandru Scvortov2011-09-061-1/+7
| | |
| | * use the recurisve delete from rabbit_miscAlexandru Scvortov2011-09-061-32/+4
| | |
| | * don't ignore symlinksAlexandru Scvortov2011-09-061-1/+1
| |/ |/|
* | Merged bug24385 into defaultEmile Joubert2011-09-061-38/+36
|\ \
| * | tweak 'publish' funs to make their relationship more obviousMatthias Radestock2011-09-061-38/+36
| |/ | | | | | | plus some cosmetic renaming for consistency
* | update commentbug24385Alexandru Scvortov2011-09-061-2/+4
| |
* | improve coverage of rabbit_controlAlexandru Scvortov2011-09-051-0/+9
|/
* Merging headsMatthew Sackman2011-09-050-0/+0
|\
| * Added tag 6547461e6c2e, rabbitmq_v2_6_0 for changeset 61cd06576025Matthew Sackman2011-09-010-0/+0
| |
* | Just like the init script, the ocf script should put the pid file in ↵Matthew Sackman2011-09-051-1/+1
| | | | | | | | /var/run, not /var/lib
* | Added tag rabbitmq_v2_6_0 for changeset 6547461e6c2eMatthew Sackman2011-09-010-0/+0
|/
* Added tag rabbitmq_v2.6.0 for changeset 6547461e6c2eTim Fox2011-08-300-0/+0
|
* Changelogs for 2.6.0 releaserabbitmq_v2_6_0rabbitmq_v2.6.0Tim Fox2011-08-302-0/+9
|
* Merge bug24377Simon MacMullen2011-08-264-17/+16
|\
| * one way to check whether rabbit is runningbug24377Matthias Radestock2011-08-254-17/+16
| | | | | | | | and avoid timeouts in application:which_applications() in doing so
* | Revert most of the merge of bug24315 apart from rabbit_misc:with_local_io/1 ↵Simon MacMullen2011-08-261-22/+1
| | | | | | | | since that's now used elsewhere.
* | move misplaced commentMatthias Radestock2011-08-261-2/+2
|/
* Update for user tags. Also move the explanation of the listing format to the ↵Simon MacMullen2011-08-251-3/+5
| | | | main doc part not the example.
* Merge bug24095 into defaultRob Harrop2011-08-242-4/+8
|\
| * Merged bug23979 into defaultEmile Joubert2011-08-231-1/+1
| |\
| | * Merge bug24357 into defaultRob Harrop2011-08-221-1/+1
| | |\
| | | * Shortstrs are actually up to 255. Derp.bug24357Matthew Sackman2011-08-221-1/+1
| | | |
| | | * AMQP error reasons are shortstrs. Take advantage of ~p and limit to the ↵Matthew Sackman2011-08-221-1/+1
| | |/ | | | | | | | | | shortstr length.
| * | only output warning if clusteredbug23979Alexandru Scvortov2011-08-191-3/+7
| | |
| * | fast-forward bug23979 to defaultAlexandru Scvortov2011-08-190-0/+0
| |\ \ | | |/ | |/|
* | | Move the default pid file so it doesn't get wiped out by rabbitmqctl reset.bug24095Simon MacMullen2011-08-231-1/+1
| | |
* | | Update the man page.Simon MacMullen2011-08-221-6/+14
| | |
* | | Merge with defaultRob Harrop2011-08-227-23/+94
|\ \ \ | |/ / |/| |
| * | MNESIA_DIR is not always set. Make sure the directory exists.Simon MacMullen2011-07-281-2/+3
| | |
| * | ...and get the ownership right.Simon MacMullen2011-07-272-0/+2
| | |
| * | /var/run/rabbitmq should existSimon MacMullen2011-07-272-0/+2
| | |
| * | Always write the pid file, and write it in /var/run for debs/RPMs.Simon MacMullen2011-07-272-5/+4
| | |
| * | It *is* a process. It *has* a pid.Simon MacMullen2011-07-201-3/+3
| | |
| * | (Untested) attempt at updating OCF script.Simon MacMullen2011-07-201-3/+18
| | |
| * | Uh, it's probably an idea to write out the pidfile as early as possible, in ↵Simon MacMullen2011-07-191-4/+4
| | | | | | | | | | | | case for example prelaunch fails.
| * | The problem with kill -0 is that its semantics are "could I send a signal to ↵Simon MacMullen2011-07-151-1/+1
| | | | | | | | | | | | this process?" - i.e. it will fail if the process exists but is not owned by the current user. I think this is not quite what we're looking for, so let's use ps -p. I've tested that ps -p does the right thing on Linux and OS X, and it claims to work on FreeBSD and AIX too according to the manpages on the web. That's probably good enough.
| * | Do these checks the other way round - if the pid is not running we should ↵Simon MacMullen2011-07-151-7/+7
| | | | | | | | | | | | fail, even if the node is up. I think.
| * | Be more clear when pidfile read fails.Simon MacMullen2011-07-151-1/+1
| | |
| * | Show when we've acquired the pid. This would be useful for diagnostics.Simon MacMullen2011-07-151-5/+7
| | |
| * | We should probably prefix this.Simon MacMullen2011-07-142-3/+3
| | |