parent
ac94d182b6
commit
a05ae761a4
@ -0,0 +1 @@ |
||||
../__chroot_mount/man.rst |
@ -1 +0,0 @@ |
||||
../__chroot_mount/man.text |
@ -0,0 +1 @@ |
||||
../__chroot_umount/man.rst |
@ -1 +0,0 @@ |
||||
../__chroot_umount/man.text |
@ -0,0 +1 @@ |
||||
../__file/man.rst |
@ -1 +0,0 @@ |
||||
../__file/man.text |
@ -0,0 +1,62 @@ |
||||
cdist-type__install_mkfs(7) |
||||
=========================== |
||||
|
||||
NAME |
||||
---- |
||||
cdist-type__install_mkfs - build a linux file system |
||||
|
||||
|
||||
DESCRIPTION |
||||
----------- |
||||
This cdist type is a wrapper for the mkfs command. |
||||
|
||||
|
||||
REQUIRED PARAMETERS |
||||
------------------- |
||||
type |
||||
The filesystem type to use. Same as used with mkfs -t. |
||||
|
||||
|
||||
OPTIONAL PARAMETERS |
||||
------------------- |
||||
device |
||||
defaults to object_id |
||||
|
||||
options |
||||
file system-specific options to be passed to the mkfs command |
||||
|
||||
blocks |
||||
the number of blocks to be used for the file system |
||||
|
||||
|
||||
EXAMPLES |
||||
-------- |
||||
|
||||
.. code-block:: sh |
||||
|
||||
# reiserfs /dev/sda5 |
||||
__install_mkfs /dev/sda5 --type reiserfs |
||||
|
||||
# same thing with explicit device |
||||
__install_mkfs whatever --device /dev/sda5 --type reiserfs |
||||
|
||||
# jfs with journal on /dev/sda2 |
||||
__install_mkfs /dev/sda1 --type jfs --options "-j /dev/sda2" |
||||
|
||||
|
||||
SEE ALSO |
||||
-------- |
||||
:strong:`mkfs`\ (8) |
||||
|
||||
|
||||
AUTHORS |
||||
------- |
||||
Steven Armstrong <steven-cdist--@--armstrong.cc> |
||||
|
||||
|
||||
COPYING |
||||
------- |
||||
Copyright \(C) 2011 Steven Armstrong. 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. |
@ -1,57 +0,0 @@ |
||||
cdist-type__install_mkfs(7) |
||||
=========================== |
||||
Steven Armstrong <steven-cdist--@--armstrong.cc> |
||||
|
||||
|
||||
NAME |
||||
---- |
||||
cdist-type__install_mkfs - build a linux file system |
||||
|
||||
|
||||
DESCRIPTION |
||||
----------- |
||||
This cdist type is a wrapper for the mkfs command. |
||||
|
||||
|
||||
REQUIRED PARAMETERS |
||||
------------------- |
||||
type:: |
||||
The filesystem type to use. Same as used with mkfs -t. |
||||
|
||||
|
||||
OPTIONAL PARAMETERS |
||||
------------------- |
||||
device:: |
||||
defaults to object_id |
||||
|
||||
options:: |
||||
file system-specific options to be passed to the mkfs command |
||||
|
||||
blocks:: |
||||
the number of blocks to be used for the file system |
||||
|
||||
|
||||
EXAMPLES |
||||
-------- |
||||
|
||||
-------------------------------------------------------------------------------- |
||||
# reiserfs /dev/sda5 |
||||
__install_mkfs /dev/sda5 --type reiserfs |
||||
# same thing with explicit device |
||||
__install_mkfs whatever --device /dev/sda5 --type reiserfs |
||||
|
||||
# jfs with journal on /dev/sda2 |
||||
__install_mkfs /dev/sda1 --type jfs --options "-j /dev/sda2" |
||||
-------------------------------------------------------------------------------- |
||||
|
||||
|
||||
SEE ALSO |
||||
-------- |
||||
- cdist-type(7) |
||||
- mkfs(8) |
||||
|
||||
|
||||
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). |
@ -0,0 +1,64 @@ |
||||
cdist-type__install_partition_msdos(7) |
||||
====================================== |
||||
|
||||
NAME |
||||
---- |
||||
cdist-type__install_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 |
||||
------------------- |
||||
partition |
||||
defaults to object_id |
||||
|
||||
bootable |
||||
mark partition as bootable, true or false, defaults to false |
||||
|
||||
size |
||||
the size of the partition (such as 32M or 15G, whole numbers |
||||
only), '+' for remaining space, or 'n%' for percentage of remaining |
||||
(these should only be used after all specific partition sizes are |
||||
specified). Defaults to +. |
||||
|
||||
|
||||
EXAMPLES |
||||
-------- |
||||
|
||||
.. code-block:: sh |
||||
|
||||
# 128MB, linux, bootable |
||||
__install_partition_msdos /dev/sda1 --type 83 --size 128M --bootable true |
||||
# 512MB, swap |
||||
__install_partition_msdos /dev/sda2 --type 82 --size 512M |
||||
# 100GB, extended |
||||
__install_partition_msdos /dev/sda3 --type extended --size 100G |
||||
# 10GB, linux |
||||
__install_partition_msdos /dev/sda5 --type 83 --size 10G |
||||
# 50% of the free space of the extended partition, linux |
||||
__install_partition_msdos /dev/sda6 --type 83 --size 50% |
||||
# rest of the extended partition, linux |
||||
__install_partition_msdos /dev/sda7 --type 83 --size + |
||||
|
||||
|
||||
AUTHORS |
||||
------- |
||||
Steven Armstrong <steven-cdist--@--armstrong.cc> |
||||
|
||||
|
||||
COPYING |
||||
------- |
||||
Copyright \(C) 2011 Steven Armstrong. 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. |
@ -1,62 +0,0 @@ |
||||
cdist-type__install_partition_msdos(7) |
||||
====================================== |
||||
Steven Armstrong <steven-cdist--@--armstrong.cc> |
||||
|
||||
|
||||
NAME |
||||
---- |
||||
cdist-type__install_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 |
||||
------------------- |
||||
partition:: |
||||
defaults to object_id |
||||
bootable:: |
||||
mark partition as bootable, true or false, defaults to false |
||||
size:: |
||||
the size of the partition (such as 32M or 15G, whole numbers |
||||
only), '+' for remaining space, or 'n%' for percentage of remaining |
||||
(these should only be used after all specific partition sizes are |
||||
specified). Defaults to +. |
||||
|
||||
|
||||
EXAMPLES |
||||
-------- |
||||
|
||||
-------------------------------------------------------------------------------- |
||||
# 128MB, linux, bootable |
||||
__install_partition_msdos /dev/sda1 --type 83 --size 128M --bootable true |
||||
# 512MB, swap |
||||
__install_partition_msdos /dev/sda2 --type 82 --size 512M |
||||
# 100GB, extended |
||||
__install_partition_msdos /dev/sda3 --type extended --size 100G |
||||
# 10GB, linux |
||||
__install_partition_msdos /dev/sda5 --type 83 --size 10G |
||||
# 50% of the free space of the extended partition, linux |
||||
__install_partition_msdos /dev/sda6 --type 83 --size 50% |
||||
# rest of the extended partition, linux |
||||
__install_partition_msdos /dev/sda7 --type 83 --size + |
||||
-------------------------------------------------------------------------------- |
||||
|
||||
|
||||
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). |
@ -0,0 +1,58 @@ |
||||
cdist-type__install_stage(7) |
||||
============================ |
||||
|
||||
NAME |
||||
---- |
||||
cdist-type__install_stage - download and unpack a stage file |
||||
|
||||
|
||||
DESCRIPTION |
||||
----------- |
||||
Downloads a operating system stage using curl and unpacks it to /target |
||||
using tar. The stage tarball is expected to be gzip compressed. |
||||
|
||||
|
||||
REQUIRED PARAMETERS |
||||
------------------- |
||||
uri |
||||
The uri from which to fetch the tarball. |
||||
Can be anything understood by curl, e.g: |
||||
| http://path/to/stage.tgz |
||||
| tftp:///path/to/stage.tgz |
||||
| file:///local/path/stage.tgz |
||||
|
||||
|
||||
OPTIONAL PARAMETERS |
||||
------------------- |
||||
target |
||||
where to unpack the tarball to. Defaults to /target. |
||||
|
||||
|
||||
BOOLEAN PARAMETERS |
||||
------------------ |
||||
insecure |
||||
run curl in insecure mode so it does not check the servers ssl certificate |
||||
|
||||
|
||||
EXAMPLES |
||||
-------- |
||||
|
||||
.. code-block:: sh |
||||
|
||||
__install_stage --uri tftp:///path/to/stage.tgz |
||||
__install_stage --uri http://path/to/stage.tgz --target /mnt/foobar |
||||
__install_stage --uri file:///path/to/stage.tgz --target /target |
||||
__install_stage --uri https://path/to/stage.tgz --target /mnt/foobar --insecure |
||||
|
||||
|
||||
AUTHORS |
||||
------- |
||||
Steven Armstrong <steven-cdist--@--armstrong.cc> |
||||
|
||||
|
||||
COPYING |
||||
------- |
||||
Copyright \(C) 2011 - 2013 Steven Armstrong. 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. |
@ -1,58 +0,0 @@ |
||||
cdist-type__install_stage(7) |
||||
============================ |
||||
Steven Armstrong <steven-cdist--@--armstrong.cc> |
||||
|
||||
|
||||
NAME |
||||
---- |
||||
cdist-type__install_stage - download and unpack a stage file |
||||
|
||||
|
||||
DESCRIPTION |
||||
----------- |
||||
Downloads a operating system stage using curl and unpacks it to /target |
||||
using tar. The stage tarball is expected to be gzip compressed. |
||||
|
||||
|
||||
REQUIRED PARAMETERS |
||||
------------------- |
||||
uri:: |
||||
The uri from which to fetch the tarball. |
||||
Can be anything understood by curl, e.g: |
||||
http://path/to/stage.tgz |
||||
tftp:///path/to/stage.tgz |
||||
file:///local/path/stage.tgz |
||||
|
||||
|
||||
OPTIONAL PARAMETERS |
||||
------------------- |
||||
target:: |
||||
where to unpack the tarball to. Defaults to /target. |
||||
|
||||
|
||||
BOOLEAN PARAMETERS |
||||
------------------ |
||||
insecure:: |
||||
run curl in insecure mode so it does not check the servers ssl certificate |
||||
|
||||
|
||||
EXAMPLES |
||||
-------- |
||||
|
||||
-------------------------------------------------------------------------------- |
||||
__install_stage --uri tftp:///path/to/stage.tgz |
||||
__install_stage --uri http://path/to/stage.tgz --target /mnt/foobar |
||||
__install_stage --uri file:///path/to/stage.tgz --target /target |
||||
__install_stage --uri https://path/to/stage.tgz --target /mnt/foobar --insecure |
||||
-------------------------------------------------------------------------------- |
||||
|
||||
|
||||
SEE ALSO |
||||
-------- |
||||
- cdist-type(7) |
||||
|
||||
|
||||
COPYING |
||||
------- |
||||
Copyright \(C) 2011 - 2013 Steven Armstrong. Free use of this software is |
||||
granted under the terms of the GNU General Public License version 3 (GPLv3). |
Loading…
Reference in new issue