저장소의 사본을 업데이트하는 스크립트가 필요합니다. "svn up"을 입력하면 대개 암호를 입력해야합니다. 어떻게 암호 입력을 자동화합니까?암호 입력으로`svn up` 자동화하기
import pexpect, sys, re
pexpect.run("svn cleanup")
child = pexpect.spawn('svn up')
child.logfile = sys.stdout
child.expect("Enter passphrase for key \'/home/rcompton/.ssh/id_rsa\':")
child.sendline("majorSecurityBreach")
matchanything = re.compile('.*', re.DOTALL)
child.expect(matchanything)
child.close()
을하지만 업데이트하지 않는 것 :
은 내가 시도했다.
편집 : 그것은 중요한 경우, 나는 child.interact로 업데이트 내 저장소()
import pexpect, sys, re
pexpect.run("svn cleanup")
child = pexpect.spawn('svn up')
child.logfile = sys.stdout
i = child.expect("Enter passphrase for key \'/home/rcompton/.ssh/id_rsa\':")
child.interact()
나 비밀번호를 입력 할 수 있습니다 및 업데이트 시작을 얻을 수 있습니다. 그러나, 나는 어쨌든 오류로 끝납니다.
-bash-3.2$ python2.7 exRepUpdate.py
Enter passphrase for key '/home/rcompton/.ssh/id_rsa':
At revision 4386.
At revision 4386.
Traceback (most recent call last):
File "exRepUpdate.py", line 13, in <module>
child.interact()
File "build/bdist.linux-x86_64/egg/pexpect.py", line 1497, in interact
File "build/bdist.linux-x86_64/egg/pexpect.py", line 1525, in __interact_copy
File "build/bdist.linux-x86_64/egg/pexpect.py", line 1515, in __interact_read
OSError: [Errno 5] Input/output error
편집 : 나는 일반 텍스트 암호 항목 주위에 방법을 발견 좋아. 나가 놓은 중요한 세부 사항 (이것이 솔직히, 나는 이것이 쉬운 문제 일 것 같았 기 때문에 필자가 필요하다고 생각하지 못했다)은 IT 부서에 공개 키를 보내야한다는 것입니다. 내가 처음 레포에 접근했을 때. 내가 다루고있는 ssh + svn에서 암호 입력을 피하는 것은 ssh-agent로 할 수있다. 이 링크 : http://mah.everybody.org/docs/ssh을 사용하면 쉽게 둘러 볼 수 있습니다. Daniel Starin의 솔루션 인 Joseph M. Reagle은 로그인 할 때마다 암호를 한 번만 입력하면 암호 입력에도 불구하고 매일 스크립트를 실행할 수 있습니다.
당신은 SVN으로 인증된다? – Eric
ssh 키로부터 판단 암호 프롬프트 - ssh를 통해) – favoretti
svn + ssh : // 프로토콜을 사용하고 있습니다. – dranxo