mirror of
				https://git.proxmox.com/git/mirror_zfs
				synced 2025-10-31 15:26:31 +00:00 
			
		
		
		
	 c9c0d073da
			
		
	
	
		c9c0d073da
		
	
	
	
	
		
			
			Add autoconf style build infrastructure to the ZFS tree. This includes autogen.sh, configure.ac, m4 macros, some scripts/*, and makefiles for all the core ZFS components.
		
			
				
	
	
		
			17 lines
		
	
	
		
			325 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			325 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/bash
 | |
| #
 | |
| # Single disk /dev/hda Raid-0 Configuration
 | |
| #
 | |
| 
 | |
| DEVICES="/dev/hda"
 | |
| 
 | |
| zpool_create() {
 | |
| 	msg ${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${DEVICES}
 | |
| 	${ZPOOL} create ${FORCE_FLAG} ${ZPOOL_NAME} ${DEVICES} || exit 1
 | |
| }
 | |
| 
 | |
| zpool_destroy() {
 | |
| 	msg ${ZPOOL} destroy ${ZPOOL_NAME}
 | |
| 	${ZPOOL} destroy ${ZPOOL_NAME} || exit 1
 | |
| }
 |