Advertisement
Guest User

Untitled

a guest
Aug 4th, 2014
194
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. Ejemplo de instalación desatendida ( uso pexpect )
  2.  
  3. #!/usr/bin/python
  4.  
  5. import pexpect
  6.  
  7. child = pexpect.spawn ('sudo apt-get -y install mtink')
  8.  
  9. child.expect ('password')
  10.  
  11. child.sendline ('vvvvvv')
  12.  
  13. child.expect ('Aceptar')
  14.  
  15. child.sendcontrol('m')
  16.  
  17. Lo malo es que la instalación queda condicionada al idioma... y si hay diferentes idiomas pues se duplica mucho todo...
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement