예제 #1
0
def main():
    accounts = [
        ['TEST', 'login.scinet.utoronto.ca'],
        ['TEST', 'colosse.clumeq.ca'],
        ['TEST', 'guillimin.clumeq.ca'],
        ['TEST', 'pomes-mp2.ccs.usherbrooke.ca'],
        ['TEST', 'orca.sharcnet.ca'],
        ['TEST', 'nestor.westgrid.ca'],
        ['TEST', 'lattice.westgrid.ca'],
        ['TEST', 'parallel.westgrid.ca'],
        ['TEST', 'orcinus.westgrid.ca'],
    ]

    new_key = open(".sumcoresgk.pub").readline().strip()

    auth_keyf = "~/.ssh/authorized_keys"
    cmd = ('sed -i -e "/heroku/d" '
           '-e "/^$/d" {0}'
           '; '
           'printf "\n{1}\n" >> {0}'.format(auth_keyf, new_key))

    # cmd = "ls"

    for (acc, cluster) in accounts:
        print cluster,
        btime = time.time()
        output = util.sshexec(cluster,
                              acc,
                              cmd,
                              rsa_key_file="/Users/redacted/.ssh/id_rsa")
        print output
        etime = time.time()
        print etime - btime
예제 #2
0
def main():
    accounts = [
        ['TEST', 'login.scinet.utoronto.ca'],
        ['TEST', 'colosse.clumeq.ca'],
        ['TEST', 'guillimin.clumeq.ca'],

        ['TEST', 'pomes-mp2.ccs.usherbrooke.ca'],
        ['TEST', 'orca.sharcnet.ca'],

        ['TEST', 'nestor.westgrid.ca'],
        ['TEST', 'lattice.westgrid.ca'],
        ['TEST', 'parallel.westgrid.ca'],
        ['TEST', 'orcinus.westgrid.ca'],
        ]

    new_key = open(".sumcoresgk.pub").readline().strip()

    auth_keyf = "~/.ssh/authorized_keys"
    cmd = ('sed -i -e "/heroku/d" '
           '-e "/^$/d" {0}'
           '; '
           'printf "\n{1}\n" >> {0}'.format(auth_keyf, new_key))

    # cmd = "ls"


    for (acc, cluster) in accounts:
        print cluster,
        btime = time.time()
        output = util.sshexec(cluster, acc, cmd, rsa_key_file="/Users/redacted/.ssh/id_rsa")
        print output
        etime = time.time()
        print etime - btime
예제 #3
0
파일: obj.py 프로젝트: pomeslab/sumcoresg
    def sshexec(self, cmd=None):
        """when ftime is True, the time when the output is received will also
        be returned"""

        if not cmd:
            cmd = self.statcmd
            r = util.sshexec(self.login_url, self.account, cmd)
            return r
예제 #4
0
파일: obj.py 프로젝트: pomeslab/sumcoresg
    def sshexec(self, cmd=None):
        """when ftime is True, the time when the output is received will also
        be returned"""

        if not cmd:
            cmd = self.statcmd
            r = util.sshexec(self.login_url, self.account, cmd)
            return r