sön 2017-01-01 klockan 10:37 -0800 skrev 'Michael Pophal': > I'm very keen on this module, but unfortunately I've no idea how to > install it. Could you please drop a hint, I'm just a ansible user ;-)
Well, here is how I installed it. The following commands being relative to the playbook top-level directory. mkdir -p library vendor git submodule add https://github.com/mskarbek/ansible-nsupdate.git vendor/ansible-nsupdate ln -s ../vendor/ansible-nsupdate/nsupdate.py library/ Note that there is nothing special about the vendor directory. Might not even be the most appropriate name. What matters is that the module becomes available from within the library directory. Doing a "git submodule add" assumes that you already have your playbook files within an existing Git repository. If that isn't the case you will probably want to do a "git clone" instead. // Andreas -- You received this message because you are subscribed to the Google Groups "Ansible Project" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/ansible-project/1483344156.2534.1.camel%40arrakis.se. For more options, visit https://groups.google.com/d/optout.
