forked from ungleich-public/cdist
		
	start work on cinst partitioning
Signed-off-by: Steven Armstrong <steven@icarus.ethz.ch>
This commit is contained in:
		
					parent
					
						
							
								c421fb769c
							
						
					
				
			
			
				commit
				
					
						0d6171c69b
					
				
			
		
					 5 changed files with 112 additions and 0 deletions
				
			
		
							
								
								
									
										20
									
								
								conf/type/__cinst_partition_msdos/gencode-remote
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										20
									
								
								conf/type/__cinst_partition_msdos/gencode-remote
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,20 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2011 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
							
								
								
									
										63
									
								
								conf/type/__cinst_partition_msdos/man.text
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										63
									
								
								conf/type/__cinst_partition_msdos/man.text
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,63 @@
 | 
				
			||||||
 | 
					cdist-type__cinst_partition_msdos(7)
 | 
				
			||||||
 | 
					====================================
 | 
				
			||||||
 | 
					Steven Armstrong <steven-cdist--@--armstrong.cc>
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					NAME
 | 
				
			||||||
 | 
					----
 | 
				
			||||||
 | 
					cdist-type__cinst_partition_msdos - creates msdos partitions
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					DESCRIPTION
 | 
				
			||||||
 | 
					-----------
 | 
				
			||||||
 | 
					This cdist type allows you to create msdos paritions.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					REQUIRED PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					type::
 | 
				
			||||||
 | 
					   the partition type used in fdisk (such as 82 or 83) or "extended"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					OPTIONAL PARAMETERS
 | 
				
			||||||
 | 
					-------------------
 | 
				
			||||||
 | 
					device::
 | 
				
			||||||
 | 
					   defaults to object_id
 | 
				
			||||||
 | 
					bootable::
 | 
				
			||||||
 | 
					   mark partition as bootable, true or false
 | 
				
			||||||
 | 
					size::
 | 
				
			||||||
 | 
					   the size of the partition (such as 32MB or 15GB, whole numbers
 | 
				
			||||||
 | 
					   only), '+' for remaining space, or 'n%' for percentage of remaining
 | 
				
			||||||
 | 
					   (these should only be used after all specific partition sizes are
 | 
				
			||||||
 | 
					   specified), leave blank if type is "extended".
 | 
				
			||||||
 | 
					   Defaults to +.
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					EXAMPLES
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					# 128MB linux, bootable
 | 
				
			||||||
 | 
					__cinst_partition_msdos /dev/sda1 --type 83 --size 128M --bootable true
 | 
				
			||||||
 | 
					# 512MB swap
 | 
				
			||||||
 | 
					__cinst_partition_msdos /dev/sda2 --type 82 --size 512M
 | 
				
			||||||
 | 
					# extended
 | 
				
			||||||
 | 
					__cinst_partition_msdos /dev/sda3 --type extended
 | 
				
			||||||
 | 
					# 10GB, linux
 | 
				
			||||||
 | 
					__cinst_partition_msdos /dev/sda5 --type 82 --size 10G
 | 
				
			||||||
 | 
					# rest of disk, linux
 | 
				
			||||||
 | 
					__cinst_partition_msdos /dev/sda6 --type 82 --size +
 | 
				
			||||||
 | 
					# same thing as
 | 
				
			||||||
 | 
					__cinst_partition_msdos /dev/sda6 --type 82
 | 
				
			||||||
 | 
					--------------------------------------------------------------------------------
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					SEE ALSO
 | 
				
			||||||
 | 
					--------
 | 
				
			||||||
 | 
					- cdist-type(7)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					COPYING
 | 
				
			||||||
 | 
					-------
 | 
				
			||||||
 | 
					Copyright \(C) 2011 Steven Armstrong. Free use of this software is
 | 
				
			||||||
 | 
					granted under the terms of the GNU General Public License version 3 (GPLv3).
 | 
				
			||||||
							
								
								
									
										25
									
								
								conf/type/__cinst_partition_msdos/manifest
									
										
									
									
									
										Executable file
									
								
							
							
						
						
									
										25
									
								
								conf/type/__cinst_partition_msdos/manifest
									
										
									
									
									
										Executable file
									
								
							| 
						 | 
					@ -0,0 +1,25 @@
 | 
				
			||||||
 | 
					#!/bin/sh
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# 2011 Steven Armstrong (steven-cdist at armstrong.cc)
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# This file is part of cdist.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is free software: you can redistribute it and/or modify
 | 
				
			||||||
 | 
					# it under the terms of the GNU General Public License as published by
 | 
				
			||||||
 | 
					# the Free Software Foundation, either version 3 of the License, or
 | 
				
			||||||
 | 
					# (at your option) any later version.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# cdist is distributed in the hope that it will be useful,
 | 
				
			||||||
 | 
					# but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
				
			||||||
 | 
					# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
				
			||||||
 | 
					# GNU General Public License for more details.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					# You should have received a copy of the GNU General Public License
 | 
				
			||||||
 | 
					# along with cdist. If not, see <http://www.gnu.org/licenses/>.
 | 
				
			||||||
 | 
					#
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					type
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					device
 | 
				
			||||||
 | 
					bootable
 | 
				
			||||||
 | 
					size
 | 
				
			||||||
							
								
								
									
										3
									
								
								conf/type/__cinst_partition_msdos/parameter/optional
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								conf/type/__cinst_partition_msdos/parameter/optional
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1,3 @@
 | 
				
			||||||
 | 
					device
 | 
				
			||||||
 | 
					bootable
 | 
				
			||||||
 | 
					size
 | 
				
			||||||
							
								
								
									
										1
									
								
								conf/type/__cinst_partition_msdos/parameter/required
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								conf/type/__cinst_partition_msdos/parameter/required
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
					@ -0,0 +1 @@
 | 
				
			||||||
 | 
					type
 | 
				
			||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue