vote up 1 vote down star
import os, sys, time

servers = ['dev','admin','db1']
for s in servers:
    cmd = 'scp /etc/hosts regular_user@%s:/etc/hosts' % s
    print cmd
    os.system(cmd)

I have written this script to copy my current HOSTS file to all my other servers. However, I would like to do this from a regular user, not ROOT.

Since over-writing /etc/hosts takes root privelages, I would like to do SUDO. How can I put sudo inside that script?

This won't work, because it is permission denied to change /etc/hosts file.

cmd = 'sudo scp /etc/hosts regular_user@%s:/etc/hosts' % s

4  
Why not use DNS? – OMG Ponies Nov 1 at 4:24
How do I use DNS? – alex Nov 1 at 4:27
1  
This might be better on serverfault. – jheddings Nov 1 at 4:28
BIND setup: dalantech.com/fusionbb/showtopic.php?tid/… – OMG Ponies Nov 1 at 4:39

Browse other questions tagged or ask your own question.