Rex
Rex copied to clipboard
Rex, the friendly automation framework
Currently it is not possible to store nested hashs (and i think also arrays) inside a shared variable. see: #921
It would make sense to be able to use notify task => "task_name"; but this does not seem to work.
(debian 9.5 / perl 5.24 / rex 1.6.0) Running the command `rexify --use="Rex::Ext::Backup"` would result in: > malformed JSON string, neither tag, array, object, number, string or atom, at character...
## Describe the bug Every once in a while, read buffer tests on FreeBSD are bailing out sporadically, like in this [CPAN Testers report](http://www.cpantesters.org/cpan/report/ed670e44-9a59-11ea-9df2-1c791f24ea8f). See #954 also, which is similar,...
See this line in the code in the sync function for Rex::Commands:Rsync: https://metacpan.org/release/Rex/source/lib/Rex/Commands/Rsync.pm#L118 That line makes a call to this helper function: https://metacpan.org/source/FERKI/Rex-1.10.0/lib/Rex/Helper/IP.pm#L25 It looks like the function expects the...
When rex is installed from git either manually, or via OS vendors (like Gentoo's live ebuild), it would be super useful to make that fact clear by e.g. including extra...
This simple patch attempts to correct a problem with rsync that I was having. rysnc was not retaining file ownership even with the --archive option. I'm not sure if this...
For https://github.com/RexOps/Rex/issues/1299
On macos, this task ``` task edit_file => sub { file "/Users/me/rex/test2/file", content => 'change me'; }; ``` will hang if the local user does not have permission to edit...
The documentation on configuring a server is thin. I have this in Rexfile: ``` group "lightsails", "ilwu_big" => { user => 'my_user', private_key => '/path/to/key.pem' }; task 'uptime', 'ilwu_big', sub...