Imports cleanup (to follow HACKING conventions) and rename of a test function for naming consistency. Change-Id: I57742ecb35e078cf72e4edb42dfe79ea40348997
		
			
				
	
	
		
			49 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			Python
		
	
	
		
			Executable File
		
	
	
	
	
# vim: tabstop=4 shiftwidth=4 softtabstop=4
 | 
						|
 | 
						|
# Copyright (c) 2011 Openstack, LLC.
 | 
						|
# All Rights Reserved.
 | 
						|
#
 | 
						|
#    Licensed under the Apache License, Version 2.0 (the "License"); you may
 | 
						|
#    not use this file except in compliance with the License. You may obtain
 | 
						|
#    a copy of the License at
 | 
						|
#
 | 
						|
#         http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
#
 | 
						|
#    Unless required by applicable law or agreed to in writing, software
 | 
						|
#    distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 | 
						|
#    WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
 | 
						|
#    License for the specific language governing permissions and limitations
 | 
						|
#    under the License.
 | 
						|
 | 
						|
 | 
						|
from nova.rootwrap import filters
 | 
						|
 | 
						|
filterlist = [
 | 
						|
    # nova/volume/iscsi.py: iscsi_helper '--op' ...
 | 
						|
    filters.CommandFilter("/usr/sbin/ietadm", "root"),
 | 
						|
    filters.CommandFilter("/usr/sbin/tgtadm", "root"),
 | 
						|
 | 
						|
    # nova/volume/driver.py: 'vgs', '--noheadings', '-o', 'name'
 | 
						|
    filters.CommandFilter("/sbin/vgs", "root"),
 | 
						|
 | 
						|
    # nova/volume/driver.py: 'lvcreate', '-L', sizestr, '-n', volume_name,..
 | 
						|
    # nova/volume/driver.py: 'lvcreate', '-L', ...
 | 
						|
    filters.CommandFilter("/sbin/lvcreate", "root"),
 | 
						|
 | 
						|
    # nova/volume/driver.py: 'dd', 'if=%s' % srcstr, 'of=%s' % deststr,...
 | 
						|
    filters.CommandFilter("/bin/dd", "root"),
 | 
						|
 | 
						|
    # nova/volume/driver.py: 'lvremove', '-f', "%s/%s" % ...
 | 
						|
    filters.CommandFilter("/sbin/lvremove", "root"),
 | 
						|
 | 
						|
    # nova/volume/driver.py: 'lvdisplay', '--noheading', '-C', '-o', 'Attr',..
 | 
						|
    filters.CommandFilter("/sbin/lvdisplay", "root"),
 | 
						|
 | 
						|
    # nova/volume/driver.py: 'iscsiadm', '-m', 'discovery', '-t',...
 | 
						|
    # nova/volume/driver.py: 'iscsiadm', '-m', 'node', '-T', ...
 | 
						|
    filters.CommandFilter("/sbin/iscsiadm", "root"),
 | 
						|
 | 
						|
    # nova/volume/driver.py:'/var/lib/zadara/bin/zadara_sncfg', *
 | 
						|
    # sudoers does not allow zadara_sncfg yet
 | 
						|
    ]
 |