search for: source_volume

Displaying 3 results from an estimated 3 matches for "source_volume".

2009 May 20
1
[PATCH server] split StorageVolumeService.svc_new into two methods.
...9513a..fb6bc9c 100644 --- a/src/app/controllers/storage_volume_controller.rb +++ b/src/app/controllers/storage_volume_controller.rb @@ -21,7 +21,11 @@ class StorageVolumeController < ApplicationController include StorageVolumeService def new - svc_new(params[:storage_pool_id], params[:source_volume_id]) + if params[:storage_pool_id] + svc_new(params[:storage_pool_id]) + else + svc_new_lv(params[:source_volume_id]) + end @return_to_workflow = params[:return_to_workflow] || false render :layout => 'popup' end diff --git a/src/app/services/storage_volum...
2009 May 19
1
re-sending outstanding controller refactoring patches after rebase
I've rebased the patch series to the current next branch and am sending them again.
2008 Jun 22
3
Xattrs and Delete over AFP
...tarts getting this: rsync: get_xattr_data: lgetxattr("Path-to-the-file","com.apple.ResourceFork",0000) failed: Bad file descriptor (9) The 0000 is different for each file. The rsync line I'm using is: rsync -aHXh --stats --progress --fileflags --crtimes --delete /Volumes/Source_Volume /Volumes/Local_Drive/Source_Mirror/ Any ideas on why the delete option would cause this to happen? Thanks for making rsync the unbelievable tool it is. Mike