I have a basic deployment procedure in place and I want to automate it. I need help with creating an sh file that I can call which will take care of all the steps.
Notes about my setup:
- root does not have FTP access.
- Another user 'senthil' has FTP access to its own folder only /home/senthil
Deployment procedure
After I checkin code to bitbucket.org...
- Open putty, login as
senthil(type username + password). - navigate to repo clone folder
/home/senthil/repos/mysite. - Do
hg pull. - Type password when requested.
- Do
hg update. - logout of senthil (putty is closed!).
- Open putty, login as root (type username + password).
- navigate to repo clone folder
/home/senthil/repos/mysite. - type
hg archive /path/to/website/root. - run a
chmodcommand so that apache user has appropriate access
When I tried to make one sh file that will take care of this, I couldn't. I could just make 2 or 3 steps and then I would encounter problems like this:
- How to enter a password at a prompt through sh for hg pull
- How to logout and login as another user in putty
How can I automate the whole process in one sh file, that I can run?