I have a fab
script, it works fine. To start it, I execute:
fab -H 192.168.xx.xx deployFiles deployConfiguration:'master',7
deployFiles
and deployConfiguration
are both functions in my fabfile.py
. 'master'
and 7
are my parameters for deployConfiguration
I have another Python script and I want to launch, the previous fab
command inside him.
How can I execute, my fabfile with these parameters from a Python script?