Here documents in Ansible
Sometimes you have a binary which _insists_ on asking you questions when installing it. I ran into that with the linux [Crashplan](http://crashplan.com/) installer. Of course there is a solution to this, called ['here documents'](https://en.wikipedia.org/wiki/Here_document). This allows you to issue commands to a script or program by piping in a piece of pre formatted text. Usually the CR/enter/return is represented as a just that. Create the here document with enters at the appropriate places. With an ansible script that is not possible. Luckily you can use `\n` in these cases: ``` ansible hostname -i ~/ansible_hosts -m shell -a "/some_path/install.sh <
















