diff options
author | Dieter Plaetinck <dieter@plaetinck.be> | 2011-05-08 18:02:55 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-05-09 16:57:38 -0500 |
commit | 03bc3e619f311e11323be5bfce57ebd0842e6595 (patch) | |
tree | bc8c9f9eb8fa35efe4d718684b250aefc2752b57 /releng/views.py | |
parent | 72bf6a02f3ee80cba40bb8556e161fd89ad7d886 (diff) |
releng: clarify some text and options
Signed-off-by: Dieter Plaetinck <dieter@plaetinck.be>
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'releng/views.py')
-rw-r--r-- | releng/views.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/releng/views.py b/releng/views.py index ae9c8682..70aaaf52 100644 --- a/releng/views.py +++ b/releng/views.py @@ -23,10 +23,12 @@ class TestForm(forms.ModelForm): source = standard_field(Source) clock_choice = standard_field(ClockChoice) filesystem = standard_field(Filesystem, - help_text="Check the installed system, including fstab.") + help_text="verify /etc/fstab, `df -hT` output and commands like " \ + "lvdisplay for special modules") modules = forms.ModelMultipleChoiceField(queryset=Module.objects.all(), help_text="", widget=forms.CheckboxSelectMultiple(), required=False) - bootloader = standard_field(Bootloader) + bootloader = standard_field(Bootloader, + help_text="Verify that the entries in the bootloader config look ok") rollback_filesystem = standard_field(Filesystem, help_text="If you did a rollback followed by a new attempt to setup " \ "your lockdevices/filesystems, select which option you took here.", |