I`m trying to use fabric to install and deploy a web project during which I need to create a postgresql database and configure a RabbitMQ server. Both these operations are interactive and requires input from the user for creating a database, adding a user, setting password etc ( at least to my knowledge ).
Can I use a fabric script to do interative shell operations like these?
This is in Fabric 1.0. I've tried it and it works for me.
Source
Edit: As payne notes below, Fabric 1.0 was released. I edited the answer to indicate this.