Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | add modules element to .app file templates | Tristan Sloughter | 2014-11-03 | 2 | -0/+2 |
| | |||||
* | preliminary _checkouts/ support | Tristan Sloughter | 2014-10-13 | 1 | -1/+0 |
| | |||||
* | add otp_app template | Tristan Sloughter | 2014-10-03 | 1 | -0/+7 |
| | |||||
* | move providers to separate app | Tristan Sloughter | 2014-10-03 | 1 | -0/+0 |
| | |||||
* | move deps and plugins to _ prefixed | Tristan Sloughter | 2014-09-20 | 1 | -0/+1 |
| | |||||
* | install plugins to plugins/ | Tristan Sloughter | 2014-09-20 | 1 | -8/+8 |
| | |||||
* | add plugin template | Tristan Sloughter | 2014-09-20 | 3 | -0/+50 |
| | |||||
* | wip: move to erlydtl for rebar templates | Tristan Sloughter | 2014-09-17 | 13 | -0/+0 |
| | |||||
* | fix lib to not start mod | Tristan Sloughter | 2014-09-16 | 3 | -3/+14 |
| | |||||
* | update release run and variables in templates | Tristan Sloughter | 2014-09-16 | 2 | -0/+2 |
| | |||||
* | update templating | Tristan Sloughter | 2014-09-16 | 61 | -1937/+87 |
| | |||||
* | add some templates | Tristan Sloughter | 2014-08-24 | 26 | -17/+580 |
| | |||||
* | Add gen_event template | Antonio Murdaca | 2014-06-15 | 2 | -0/+62 |
| | |||||
* | Error 'Command not found' when sname is used | Habibutsu | 2014-05-27 | 1 | -1/+1 |
| | | | | When a node is configured with -sname the REMSH_NAME_PART argument should be defined with using command 'hostname' but error occurs due extra space | ||||
* | Merge pull request #52 from shino/slim-release-support | Jared Morrow | 2014-05-21 | 3 | -9/+47 |
|\ | | | | | Slim release support | ||||
| * | Add TODO comment to install_upgrade script template | Shunichi Shinohara | 2014-03-09 | 1 | -0/+8 |
| | | |||||
| * | Change nodetool path to under releases/<RELEASE_VERSION>/ | Shunichi Shinohara | 2014-03-09 | 2 | -7/+8 |
| | | |||||
| * | Add slim release support for runner script | Shunichi Shinohara | 2014-03-09 | 1 | -8/+37 |
| | | |||||
* | | Fix #56 (always-on recursion) | Tuncer Ayaz | 2014-03-11 | 2 | -1/+7 |
|/ | | | | | | | | | | | | | | | | | | Always-on recursive application of all rebar commands causes too many issues. Recursive application is required for: 1. dealing with dependencies: get-deps, update-deps, and compile of deps right after get-deps or update-deps 2. projects with a riak-like apps/ project structure and dev process The vast majority of projects are not structured like riak. Therefore, moving forward it's best to (by default) restrict recursive behavior to dealing with deps. This commit does that and also adds command line and rebar.config options for controlling or configuring recursion. Also, we introduce two meta commands: prepare-deps (equivalent to rebar -r get-deps compile) and refresh-deps (equivalent to rebar -r update-deps compile). riak-like projects can extend the list of recursive commands (to include 'eunit' and 'compile') by adding {recursive_cmds, [eunit, compile]} to rebar.config. | ||||
* | Merge pull request #115 from mdaguete/simplenode.runner-remsh-fixes | Andrew Thompson | 2014-03-05 | 1 | -3/+29 |
|\ | | | | | Incorrect REMSH args when sname is used. | ||||
| * | Make REMSH node run in hidden mode | Manuel Durán Aguete | 2013-07-19 | 1 | -1/+1 |
| | | | | | | | | | | To avoid problems with REMSH node being visible from another nodes starts it in hidden mode (erl -hidden). | ||||
| * | Incorrect REMSH args when sname is used | Manuel Durán Aguete | 2013-07-19 | 1 | -2/+28 |
| | | | | | | | | | | | | | | | | | | | | When a node is configured with -sname in app.config or sys.config the REMSH_NAME_ARG and REMSH_REMSH_ARG arguments are incorrect due the assumption that the node name always contains '@'. To fix the bug, the script tries to find '@' and then compose the arguments acording to node name type. If in long name mode the script can't compose a correct node name exits with warning. | ||||
* | | Add command to rebar:command_names/0 | Pierre Fenoll | 2013-12-19 | 1 | -2/+0 |
| | | |||||
* | | Add a library template | Pierre Fenoll | 2013-12-19 | 5 | -0/+39 |
| | | |||||
* | | Change default log level to 'warn' and introduce -q/--quiet | Tuncer Ayaz | 2013-12-06 | 1 | -4/+4 |
| | | |||||
* | | Init RUNNER_SCRIPT var in simplenode.runner | Manuel Durán Aguete | 2013-11-18 | 1 | -0/+1 |
|/ | | | | | RUNNER_SCRIPT variable is not initialized in simplenode.runner and it's referenced when calling sudo. | ||||
* | Merge pull request #54 from mattonrails/simpleapp_sup_template_typo | Dave Smith | 2013-06-14 | 1 | -1/+0 |
|\ | | | | | Remove leading empty line from a template | ||||
| * | Remove leading empty line from a template | Matthew Conway | 2013-01-14 | 1 | -1/+0 |
| | | |||||
* | | Merge pull request #96 from olgeni/pwd-symlink-fix | Dave Smith | 2013-06-12 | 2 | -2/+2 |
|\ \ | | | | | | | Use "pwd -P" to get the current physical path. | ||||
| * | | Use "pwd -P" to get the current physical path. | olgeni | 2013-06-10 | 2 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It is a portable version of the realpath(1) utility that you can find on Mac OS X and FreeBSD (see also The Open Group Base Specifications Issue 6, IEEE Std 1003.1). Without the -P flag, pwd(1) might return different values when the current path contains one or more symlinks, depending on how you got into the current directory. In simplenode.runner, this may cause PIPE_DIR to have different values on each use, which will make it impossible to connect to the running node unless you guess the correct path yourself. | ||||
* | | | Add support for ping command on windows in the simple node runner | syl20bnr | 2013-05-20 | 2 | -2/+12 |
|/ / | |||||
* | | Do not compile nodetool escript | Tuncer Ayaz | 2013-04-12 | 1 | -2/+0 |
| | | | | | | | | This removes the dependency on lib/compiler in an OTP release. | ||||
* | | simplenode.reltool.config: use default sys-level mod_cond setting | Tuncer Ayaz | 2013-04-06 | 1 | -1/+0 |
| | | | | | | | | | | | | As discussed here http://erlang.org/pipermail/erlang-questions/2012-December/071135.html change the reltool spec to use the default sys-level mod_cond setting. | ||||
* | | Remove unnecessary bar | Dave Smith | 2013-03-02 | 1 | -1/+1 |
| | | |||||
* | | Change simplenode template files to work on more platforms | Jared Morrow | 2013-01-17 | 4 | -43/+156 |
|/ | | | | | | | | | | | | When developing Riak, we have found bugs and other issues due to the number of platforms we support. Here is an overview of the changes: - Fix command-line syntax for commands to work on *BSD / Sun - Add chkconfig and getpid to nodetool - Replace platform specific 'kill' commands with a nodetool getpid method - Fix RUNNER_USER settings to work on *BSD | ||||
* | Merge pull request #34 from shkumagai/feature/zsh-completion-add-options | Dave Smith | 2012-12-02 | 1 | -0/+3 |
|\ | | | | | Add missing variables | ||||
| * | Add missing variables | Shoji KUMAGAI | 2012-12-03 | 1 | -0/+3 |
| | | | | | | | | - add overlay_vars=, target_dir=, and tests= with short description | ||||
* | | bash-completion: add missing options and variables | Tuncer Ayaz | 2012-12-01 | 1 | -8/+51 |
|/ | | | | | - add missing short and long options - add tests=, target_dir=, overlay_vars= | ||||
* | zsh-completion: add 'dump_spec' back again | Shoji KUMAGAI | 2012-12-01 | 1 | -0/+1 |
| | |||||
* | bash-completion: add dump_spec=1 | Tuncer Ayaz | 2012-11-30 | 1 | -3/+3 |
| | |||||
* | Merge pull request #19 from shkumagai/feature/zsh-completion-refine | Dave Smith | 2012-11-30 | 1 | -1/+1 |
|\ | | | | | Change zsh completion script | ||||
| * | Change zsh completion script | Shoji KUMAGAI | 2012-11-16 | 1 | -1/+1 |
| | | | | | | | | | | - Add 'escriptize' command - Remove variable 'dump_spec' | ||||
* | | bash-completion: add generate-appups | Tuncer Ayaz | 2012-11-26 | 1 | -4/+4 |
|/ | |||||
* | zsh completion: fix typos | Tuncer Ayaz | 2012-11-01 | 1 | -9/+9 |
| | |||||
* | Add zsh completion script | Shoji KUMAGAI | 2012-11-01 | 1 | -0/+79 |
| | | | | For enable to shell-completion in zsh. | ||||
* | bash completion: remove duplicate cmd | Tuncer Ayaz | 2012-08-09 | 1 | -1/+1 |
| | |||||
* | Replace test-compile with compile_only=true option | Tuncer Ayaz | 2012-08-09 | 1 | -2/+2 |
| | |||||
* | Quote paths in Windows runner script | Matt Campbell | 2012-07-31 | 2 | -23/+36 |
| | | | | | This allows the node to run in paths which include special characters, for example 'C:\Program Files (x86)\Product Name' | ||||
* | Add 'qc' cmd and rename eunit-compile to test-compile | Tuncer Ayaz | 2012-07-23 | 1 | -2/+2 |
| | |||||
* | Add 'eunit-compile' cmd (Suggested-by: Joe Norton) | Tuncer Ayaz | 2012-07-23 | 1 | -4/+5 |
| |