OpenSecurity/bin/cygwin.py
changeset 252 824ae4324f57
parent 240 d7ef04254e9c
     1.1 --- a/OpenSecurity/bin/cygwin.py	Wed Oct 29 15:18:22 2014 +0100
     1.2 +++ b/OpenSecurity/bin/cygwin.py	Tue Jan 13 18:26:41 2015 +0100
     1.3 @@ -74,6 +74,7 @@
     1.4      theClass.cygwin_bash = os.path.join(theClass.cygwin_bin, 'bash.exe')
     1.5      theClass.cygwin_ssh = os.path.join(theClass.cygwin_bin, 'ssh.exe')
     1.6      theClass.cygwin_scp = os.path.join(theClass.cygwin_bin, 'scp.exe')
     1.7 +    theClass.cygwin_rsync = os.path.join(theClass.cygwin_bin, 'rsync.exe')
     1.8      theClass.cygwin_x11 = os.path.join(theClass.cygwin_bin, 'XWin.exe')
     1.9      theClass.win_cmd = os.environ.get("COMSPEC", "cmd.exe") 
    1.10      """get the path to the VirtualBox installation on this system"""
    1.11 @@ -93,6 +94,7 @@
    1.12      cygwin_ssh = ''
    1.13      cygwin_x11 = ''
    1.14      cygwin_scp = ''
    1.15 +    cygwin_rsync = ''
    1.16      vbox_root = ''
    1.17      vbox_man = ''
    1.18      win_cmd = ''
    1.19 @@ -134,6 +136,10 @@
    1.20      @staticmethod    
    1.21      def scp():
    1.22          return Cygwin.cygwin_scp
    1.23 +    
    1.24 +    @staticmethod    
    1.25 +    def rsync():
    1.26 +        return Cygwin.cygwin_rsync
    1.27  
    1.28      @staticmethod    
    1.29      def x11():