(self, mountpoint, remotepath)
| 98 | |
| 99 | |
| 100 | def mount(self, mountpoint, remotepath): |
| 101 | try: |
| 102 | nfs.soft_mount(mountpoint, self.remoteserver, remotepath, self.transport) |
| 103 | except nfs.NfsException, exc: |
| 104 | raise xs_errors.XenError('NFSMount', opterr=exc.errstr) |
| 105 | |
| 106 | |
| 107 | def attach(self, sr_uuid): |
no outgoing calls
no test coverage detected