summaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@redhat.com>2008-08-19 15:47:55 -0400
committerMichael DeHaan <mdehaan@redhat.com>2008-08-19 15:47:55 -0400
commita3c38cd3d48bb6935c27fd3857624ba249b7c7f1 (patch)
tree6c05b6cbe1fb8675adfc8275b49fa450f8d56ec7 /docs
parente85d34ab945a1597a5b4a8693b34a2cd5f8f910a (diff)
downloadcobbler-a3c38cd3d48bb6935c27fd3857624ba249b7c7f1.tar.gz
cobbler-a3c38cd3d48bb6935c27fd3857624ba249b7c7f1.tar.xz
cobbler-a3c38cd3d48bb6935c27fd3857624ba249b7c7f1.zip
Add --kopts-post to docs
Diffstat (limited to 'docs')
-rw-r--r--docs/cobbler.pod17
1 files changed, 14 insertions, 3 deletions
diff --git a/docs/cobbler.pod b/docs/cobbler.pod
index e0462a3e..9444add1 100644
--- a/docs/cobbler.pod
+++ b/docs/cobbler.pod
@@ -54,7 +54,7 @@ If there is an rsync mirror, DVD, NFS, or filesystem tree available that you wou
If you want to be explicit with distribution definition, however, here's how it works:
-B<cobbler distro add --name=string --kernel=path --initrd=path [--kopts=string] [--ksmeta=string] [--arch=x86|x86_64|ia64] [--breed=redhat|debian|suse]>
+B<cobbler distro add --name=string --kernel=path --initrd=path [--kopts=string] [--kopts-post=string] [--ksmeta=string] [--arch=x86|x86_64|ia64] [--breed=redhat|debian|suse]>
=over
@@ -73,9 +73,20 @@ An absolute filesystem path to a initrd image
=item kopts
Sets kernel command-line arguments that the distro, and profiles/systems dependant
-on it, will use.
+on it, will use. To remove a kernel argument that may be added by a higher cobbler object
+(or in the global settings), you can prefix it with a "!".
-Example: --kopts="foo=bar baz=3 asdf"
+Example: --kopts="foo=bar baz=3 asdf !gulp"
+
+This example passes the arguments "foo=bar baz=3 asdf" but will make sure "gulp" is not passed even
+if it was requested at a level higher up in the cobbler configuration.
+
+=item kopts-post
+
+This is just like --kopts, though it governs kernel options on the installed OS, as opposed to
+kernel options fed to the installer. The syntax is exactly the same.
+
+Example: "noapic"
=item arch