diff options
Diffstat (limited to 'modules/netboot_target.py')
-rw-r--r-- | modules/netboot_target.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/modules/netboot_target.py b/modules/netboot_target.py index 92c1b045..2f2435e3 100644 --- a/modules/netboot_target.py +++ b/modules/netboot_target.py @@ -1,13 +1,16 @@ - """ -Builder class for a netboot build. +netboot target, version 1 """ +# NOTE: That^^ docstring has influence catalyst-spec(5) man page generation. import os,string,types from catalyst_support import * from generic_stage_target import * class netboot_target(generic_stage_target): + """ + Builder class for a netboot build. + """ def __init__(self,spec,addlargs): self.valid_values = [ "netboot/kernel/sources", |