Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.

Link zu dieser Vergleichsansicht

Nächste Überarbeitung
Vorhergehende Überarbeitung
centos:pxe_c7:pxe_1 [05.01.2017 23:15. ] – angelegt djangocentos:pxe_c7:pxe_1 [11.06.2020 19:24. ] (aktuell) – [Clienttest] django
Zeile 14: Zeile 14:
    # cp -a /usr/share/syslinux/{chain.c32,mboot.c32,memdisk,menu.c32,pxelinux.0,vesamenu.c32} /var/lib/tftpboot    # cp -a /usr/share/syslinux/{chain.c32,mboot.c32,memdisk,menu.c32,pxelinux.0,vesamenu.c32} /var/lib/tftpboot
  
-Als nächstes erstellen wir uns noch einen Ordner, in dem die Bootmenüs abgelegt werden, die später beim PXE-Boot dem Client präsentiert werden sollen.+Anaxgließend erstellen wir uns noch einen Ordner, in dem die Bootmenüs abgelegt werden, die später beim PXE-Boot dem Client präsentiert werden sollen.
    # mkdir /var/lib/tftpboot/pxelinux.cfg    # mkdir /var/lib/tftpboot/pxelinux.cfg
  
 Im Anschluss daran legen wir uns noch die Verzeichnisse für die Image-Dateien, die beim Bootvorgang benötigt werden, an. Bei unserer Installation wollen wir für folgende CentOS-Versionen und Architekturen später jeweils einen entsprechenden Eintrag im Bootmenü vorhalten. Im Anschluss daran legen wir uns noch die Verzeichnisse für die Image-Dateien, die beim Bootvorgang benötigt werden, an. Bei unserer Installation wollen wir für folgende CentOS-Versionen und Architekturen später jeweils einen entsprechenden Eintrag im Bootmenü vorhalten.
 +  * **CentOS 8 - x86_64**
   * **CentOS 7 - x86_64**   * **CentOS 7 - x86_64**
   * **CentOS 6 - x86_64**   * **CentOS 6 - x86_64**
   * **CentOS 6 - i386**   * **CentOS 6 - i386**
  
-  - <code># mkdir /var/lib/tftpboot/images/centos/7/x86_64 -p </code> +  - <code> # mkdir /var/lib/tftpboot/images/centos/8/x86_64 -p </code> 
-  - <code># mkdir /var/lib/tftpboot/images/centos/6/x86_64 -p </code> +  - <code> # mkdir /var/lib/tftpboot/images/centos/7/x86_64 -p </code> 
-  - <code># mkdir /var/lib/tftpboot/images/centos/6/i386 -p </code>+  - <code> # mkdir /var/lib/tftpboot/images/centos/6/x86_64 -p </code> 
 +  - <code> # mkdir /var/lib/tftpboot/images/centos/6/i386 -p </code>
  
 Als abschliessenden Punkt werden wir nun in die gerade angelegten und entsprechenden Verzeichnisse jeweils das zugehörige **initrd.img** und **vmlinuz** aus dem Repository laden. Als abschliessenden Punkt werden wir nun in die gerade angelegten und entsprechenden Verzeichnisse jeweils das zugehörige **initrd.img** und **vmlinuz** aus dem Repository laden.
 +  - <code> # cd /var/lib/tftpboot/images/centos/8/x86_64 </code> <code> # wget  http://repository.nausch.org/centos/8/BaseOS/x86_64/kickstart/images/pxeboot/initrd.img </code> <code> # wget http://repository.nausch.org/centos/8/BaseOS/x86_64/kickstart/images/pxeboot/vmlinuz </code>
   - <code># cd /var/lib/tftpboot/images/centos/7/x86_64 </code> <code># wget http://repository.nausch.org/centos/7/os/x86_64/images/pxeboot/initrd.img </code> <code># wget http://repository.nausch.org/centos/7/os/x86_64/images/pxeboot/vmlinuz </code>   - <code># cd /var/lib/tftpboot/images/centos/7/x86_64 </code> <code># wget http://repository.nausch.org/centos/7/os/x86_64/images/pxeboot/initrd.img </code> <code># wget http://repository.nausch.org/centos/7/os/x86_64/images/pxeboot/vmlinuz </code>
   - <code># cd /var/lib/tftpboot/images/centos/6/x86_64/ </code> <code># wget http://repository.nausch.org/centos/6/os/x86_64/images/pxeboot/initrd.img </code> <code># wget http://repository.nausch.org/centos/6/os/x86_64/images/pxeboot/vmlinuz </code>   - <code># cd /var/lib/tftpboot/images/centos/6/x86_64/ </code> <code># wget http://repository.nausch.org/centos/6/os/x86_64/images/pxeboot/initrd.img </code> <code># wget http://repository.nausch.org/centos/6/os/x86_64/images/pxeboot/vmlinuz </code>
Zeile 43: Zeile 46:
 │       │       ├── initrd.img │       │       ├── initrd.img
 │       │       └── vmlinuz │       │       └── vmlinuz
-│       ── 7 +│       ── 7 
-│           └── x86_64 +│       │   └── x86_64 
-│               ├── initrd.img +│       │       ├── initrd.img 
-│               └── vmlinuz+│       │       └── vmlinuz 
 +│       └── 8 
 +│           └── x86_64 
 +│               ├── initrd.img 
 +│               └── vmlinuz
 ├── mboot.c32 ├── mboot.c32
 ├── memdisk ├── memdisk
Zeile 57: Zeile 64:
 Für die Auswahl der unterschiedlichen Systeme, die wir später zur Installation anbieten wollen, benötigen wir noch ein passendes Auswahlmenü. Dieses Bootmenü wird mit Hilfe der Datei //**/var/lib/tftpboot/pxelinux.cfg/default**// bereitgestellt. Wir legen uns also für eine erste "spartanische Variante" nachfolgende Datei an. Für die Auswahl der unterschiedlichen Systeme, die wir später zur Installation anbieten wollen, benötigen wir noch ein passendes Auswahlmenü. Dieses Bootmenü wird mit Hilfe der Datei //**/var/lib/tftpboot/pxelinux.cfg/default**// bereitgestellt. Wir legen uns also für eine erste "spartanische Variante" nachfolgende Datei an.
    # vim /var/lib/tftpboot/pxelinux.cfg/default    # vim /var/lib/tftpboot/pxelinux.cfg/default
-<file bash /var/lib/tftpboot/pxelinux.cfg/default># Django 2016-01-08+<file bash /var/lib/tftpboot/pxelinux.cfg/default># Django 2020-06-11
 # erstes einfaches Bootmenü für PXE-Boot # erstes einfaches Bootmenü für PXE-Boot
  
Zeile 85: Zeile 92:
  
 LABEL 2 LABEL 2
 +   MENU LABEL ^2) Installation von CentOS 8 (64 Bit)
 +   KERNEL images/centos/8/x86_64/vmlinuz
 +   APPEND initrd=images/centos/8/x86_64/initrd.img ip=dhcp method=http://10.0.0.57/centos/8/BaseOS/x86_64/os/
 +
 +LABEL 3
    MENU LABEL ^2) Installation von CentOS 7 (64 Bit)    MENU LABEL ^2) Installation von CentOS 7 (64 Bit)
    KERNEL images/centos/7/x86_64/vmlinuz    KERNEL images/centos/7/x86_64/vmlinuz
-   APPEND initrd=images/centos/7/x86_64/initrd.img ramdisk_size=128000 ip=dhcp method=http://10.0.0.57/centos/7/os/x64_86+   APPEND initrd=images/centos/7/x86_64/initrd.img ip=dhcp method=http://10.0.0.57/centos/7/os/x64_86
  
-LABEL 3+LABEL 4
    MENU LABEL ^3) Installation von CentOS 6 (64 Bit)    MENU LABEL ^3) Installation von CentOS 6 (64 Bit)
    KERNEL images/centos/6/x86_64/vmlinuz    KERNEL images/centos/6/x86_64/vmlinuz
-   APPEND initrd=images/centos/6/x86_64/initrd.img ramdisk_size=128000 ip=dhcp method=http://10.0.0.57/centos/6/os/x86_64+   APPEND initrd=images/centos/6/x86_64/initrd.img ip=dhcp method=http://10.0.0.57/centos/6/os/x86_64
  
-LABEL 4+LABEL 5
    MENU LABEL ^4) Installation von CentOS 6 (32 Bit)    MENU LABEL ^4) Installation von CentOS 6 (32 Bit)
    KERNEL images/centos/6/i386/vmlinuz    KERNEL images/centos/6/i386/vmlinuz
-   APPEND initrd=images/centos/6/i386/initrd.img ramdisk_size=128000 ip=dhcp method=http://10.0.0.57/centos/6/os/i386</file>+   APPEND initrd=images/centos/6/i386/initrd.img ip=dhcp method=http://10.0.0.57/centos/6/os/i386</file>
  
 ==== DHCP-Server anpassen ==== ==== DHCP-Server anpassen ====
Zeile 174: Zeile 186:
   dracut-initqueue [666] RTNETLINK answers: File exists   dracut-initqueue [666] RTNETLINK answers: File exists
   dracut-initqueue [666] Warning: can't find installer mainimage path in .treeinfo   dracut-initqueue [666] Warning: can't find installer mainimage path in .treeinfo
-Bei CentOS 7 benötigen wir noch ein passendes kickstrat-File, welches wir uns im Kapitel [[centos:pxe:pxe_2#installationsscript_fuer_centos_installation|PXE Optimierung - Installationsscript für CentOS Installation]] erstellen werden!+Bei CentOS 7 benötigen wir noch ein passendes kickstart-File, welches wir uns im Kapitel [[centos:pxe:pxe_2#installationsscript_fuer_centos_installation|PXE Optimierung - Installationsscript für CentOS Installation]] erstellen werden!
 </WRAP> </WRAP>
  
Zeile 466: Zeile 478:
    # vim /var/lib/tftpboot/pxelinux.cfg/dmz-64    # vim /var/lib/tftpboot/pxelinux.cfg/dmz-64
  
-<file bash /var/lib/tftpboot/pxelinux.cfg/dmz-64># Django 2014-07-02+<file bash /var/lib/tftpboot/pxelinux.cfg/dmz-64># Django 2020-06-11
 # verschachteltes Untermenü mit graphischer Auswahlmöglichkeit für PXE-Boot # verschachteltes Untermenü mit graphischer Auswahlmöglichkeit für PXE-Boot
  
Zeile 531: Zeile 543:
  
 LABEL 3 LABEL 3
 +   MENU LABEL ^3) Installation von CentOS 8 (64 Bit)
 +   KERNEL images/centos/8/x86_64/vmlinuz
 +   APPEND ks=http://10.0.0.57/kickstart/ks_centos_8_x86_64_dmz.cfg initrd=images/centos/8/x86_64/initrd.img ksdevice=eth0 ip=dhcp --hostname=vml000250.dmz.nausch.org method=http://10.0.0.57/centos/8/BaseOS/x86_64/os/ SERVERNAME=
 +   
 +LABEL 4
    MENU LABEL ^3) Installation von CentOS 7 (64 Bit)    MENU LABEL ^3) Installation von CentOS 7 (64 Bit)
    KERNEL images/centos/7/x86_64/vmlinuz    KERNEL images/centos/7/x86_64/vmlinuz
    APPEND ks=http://10.0.0.57/kickstart/ks_centos_7_x86_64_dmz.cfg initrd=images/centos/7/x86_64/initrd.img ramdisk_size=128000 ksdevice=eth0 ip=dhcp --hostname=vml000250.dmz.nausch.org method=http://10.0.0.57/centos/7/os/x86_64 SERVERNAME=    APPEND ks=http://10.0.0.57/kickstart/ks_centos_7_x86_64_dmz.cfg initrd=images/centos/7/x86_64/initrd.img ramdisk_size=128000 ksdevice=eth0 ip=dhcp --hostname=vml000250.dmz.nausch.org method=http://10.0.0.57/centos/7/os/x86_64 SERVERNAME=
  
- +LABEL 5
-LABEL 4+
    MENU LABEL ^4) Installation von CentOS 6 (64 Bit)    MENU LABEL ^4) Installation von CentOS 6 (64 Bit)
    KERNEL images/centos/6/x86_64/vmlinuz    KERNEL images/centos/6/x86_64/vmlinuz
Zeile 549: Zeile 565:
  
   * **Untermenü Utilities**:   * **Untermenü Utilities**:
-{{ :centos:pxe_c7:pxe-boot-menue-004.png?nolink&800 |Bild: Bildschirmhardcopy des graphischen Bootmenüs}} 
-  * **Untermenü DMZ 64 bit**: 
 {{ :centos:pxe_c7:pxe-boot-menue-005.png?nolink&800 |Bild: Bildschirmhardcopy des graphischen Bootmenüs}} {{ :centos:pxe_c7:pxe-boot-menue-005.png?nolink&800 |Bild: Bildschirmhardcopy des graphischen Bootmenüs}}
 +  * **Untermenü DMZ 64 bit**:
 +{{ :centos:pxe_c7:pxe-boot-menue-004.png?nolink&800 |Bild: Bildschirmhardcopy des graphischen Bootmenüs}}
  
 Nun haben wir ein wesentlich aufgeräumteres und struktierteres Bootmenü.  Nun haben wir ein wesentlich aufgeräumteres und struktierteres Bootmenü. 
Zeile 558: Zeile 574:
 Was nun noch fehlt sind Hilfeseiten mit zusätzlichen Informationen zu den einzelnen Untermenüs und Bootoptionen. Mit diesen werden wir uns nun noch in dem abschliessenden Konfigurationsbeispiel befassen. Was nun noch fehlt sind Hilfeseiten mit zusätzlichen Informationen zu den einzelnen Untermenüs und Bootoptionen. Mit diesen werden wir uns nun noch in dem abschliessenden Konfigurationsbeispiel befassen.
  
 +Zuerst erweitern wir wieder unserer Hauptmenüseite //**/var/lib/tftpboot/pxelinux.cfg/default**// und tragen am Ende folgende Zeile(n) nach. 
 +  # Zusätzliche Hilfeseiten auf Tastendruck einblenden.
 +  F1 pxelinux.cfg/about.txt
  
 +   # vim /var/lib/tftpboot/pxelinux.cfg/default
 +<file bash /var/lib/tftpboot/pxelinux.cfg/default># Django 2014-07-02
 +# erweitertes graphisches Bootmenü mit Untermenüs und Hilfeseite (F1) für PXE-Boot
  
 +# Einbinden des User-Interface-Module vesamenu.c32
 +default vesamenu.c32
 +# starten des Standardeintrages nach 10 Sekunden
 +timeout 100 
 +# [0] Boot-Prompt ausblenden [1] Boot-Prompt standardmäßig angezeigen
 +prompt 0
 +# [0] Öffnen des Boot mit ESC ermöglichen [1] Funktion deaktivieren.
 +noescape 0
  
 +# Definitionen des Bootmenü-Bildschirms:
 +#
 +# background  : Hintergrundgraphik für das Bootmenü (Größe: 640x480 Format: PNG)
 +# border      : Rahmen
 +# cmdline     : Kommandozeile
 +# cmdmark     : Kommandozeile (Marker)
 +# disabled    : Menüeintrag (nicht aktiviert)
 +# help        : Hilfe Text
 +# hotkey      : Hotkey (nicht ausgewählt)
 +# hotsel      : Hotkey (ausgewählt)
 +# msgXX       : Nachricht (Funktionstaste) Datei-Attribut XX
 +# pwdborder   : Passwortbox (Rahmen)
 +# pwdheader   : Passwortbox (Überschrift)
 +# pwdentry    : Passwortbox (Inhalt)
 +# sel         : Selektionsbalken
 +# screen      : Bildschirmhintergrund
 +# scrollbar   : Scroll-Balken
 +# tabmsg      : "Press [Tab]" Nachricht
 +# timeout_msg : Timeout Nachricht
 +# timeout     : Timeout Zähler
 +# title       : Überschriftsbalken
 +# unsel       : Menüeintrag (nicht ausgewählt)
  
 +menu background bootgraphik.png
 +menu title *** PXE Boot-Auswahl Menue ***
 +menu color title 1;36;44        #0824b5 #00000000 std
 +menu color sel *                #00000000 #0824b5 *
 +menu color hotsel 1;7;37;40     #00000000 #999999ff *
 +menu color unsel 1;36;44        #0824b5 #00000000 std
 +menu color hotkey 1;36;44       #0824b5 #00000000 std
 +menu color tabmsg 1;36;44       #ed7500 #00000000 std
 +menu color cmdline 1;36;44      #0824b5 #00000000 std
 +menu color timeout_msg 1;36;44  #0824b5 #00000000 std
 +menu color timeout 1;36;44      #0824b5 #00000000 std
 +menu color help 1;36;30         #ff0000 #00000000 std
 +menu helpmsgrow 20
  
 +# Definition der einzelnen Booteinträge:
 +# LABEL      : Eindeutige Bezeichnung eines Booteintrages
 +# MENU LABEL : Aussagekräftige Beschreibung des LABELs, welche im Mootmenü angezeigt werden soll 
 +# KERNEL     : Definition des zu bootenden Kernel Images
 +# APPEND     : Definition von Benutzerspezifischen Kerneloptionen
  
 +LABEL 1
 +   MENU LABEL ^1) Boot from ^HD (default)
 +     localboot 0
  
 +LABEL 2
 +   MENU LABEL ^2) Untermenue Intranet (32 Bit)
 +   KERNEL vesamenu.c32
 +   APPEND pxelinux.cfg/intra-32
 +
 +LABEL 3
 +   MENU LABEL ^3) Untermenue Intranet (64 Bit)
 +   KERNEL vesamenu.c32
 +   APPEND pxelinux.cfg/intra-64
 + 
 +LABEL 4
 +   MENU LABEL ^4) Untermenue DMZ (32 Bit)
 +   KERNEL vesamenu.c32
 +   APPEND pxelinux.cfg/dmz-32
 +
 +LABEL 5
 +   MENU LABEL ^5) Untermenue DMZ (64 Bit)
 +   KERNEL vesamenu.c32
 +   APPEND pxelinux.cfg/dmz-64
 +
 +
 +LABEL A
 +   MENU LABEL ^A) Untermenue DBAN: Festplatten sicher loeschen
 +   KERNEL vesamenu.c32
 +   APPEND pxelinux.cfg/dban
 +
 +LABEL B
 +   MENU LABEL ^B) Untermenue Clonezilla (i686-PAE)
 +   KERNEL vesamenu.c32
 +   APPEND pxelinux.cfg/clonezilla_i686-pae
 +
 +LABEL C
 +   MENU LABEL ^C) Untermenue Clonezilla (AMD-64)
 +   KERNEL vesamenu.c32
 +   APPEND pxelinux.cfg/clonezilla_amd-64
 +
 +LABEL D
 +   MENU LABEL ^D) Untermenue Utilities
 +   KERNEL vesamenu.c32
 +   APPEND pxelinux.cfg/utilities
 +
 +# Zusätzliche Hilfeseiten auf Tastendruck einblenden.
 +F1 pxelinux.cfg/about.txt</file>
 +
 +<WRAP center round alert 90%>
 +Den Hilfetext packen wir dann in nachfolgende Datei: {{ :centos:pxe_c7:about.txt |}} Hier ist es wichtig, dass diese Datei in der Originalstruktur beibehalten und __nur__ die entsprechenden Textpassagen ausgetauscht werden! Keinenfalls versuchen, die Datei per Hand anzulegen - die nötigen Formatierungen würden zerstört und das Ergebnis zu wünschen übrig lassen!
 +</WRAP>
 +
 +==== Clienttest ====
 +Starten wir nun erneut einen neuen vHOST, dann wird uns unser bereits bekanntes Bootmenü angezeigt.
 +
 +{{ :centos:pxe_c7:pxe-boot-menue-002.png?nolink&800 |Bild: Bildschirmhardcopy des graphischen Bootmenüs}}
  
 +Drücken wir nun die Taste **F1** wir unsere zuvor neu definierte Hilfeseite eingeblendet.
  
 +{{ :centos:pxe_c7:pxe-boot-menue-006.png?nolink&800 |Bild: Bildschirmhardcopy des graphischen Bootmenüs mit eingeblendetem Hilfetext}}
  
 +Mit einem erneuten Druck auf die Taste **F1** verlassen wir den eingeblendeten Hilfetext wieder.
  
 +==== automatische Installation ====
 +Einen weiteren Schritt zur Komfortablen und automatisierten Installation werden wir mit Hilfe einer Kickstartdatei vornehmen. Wie dies geht, ist im Kapitel [[centos:pxe_c7:pxe_2|PXE-Server unter CentOS 7.x optimieren (Kickstartfile)]] beschrieben.
  
 +====== Links ======
 +  * **[[centos:pxe_c7:start|Zurück zum Kapitel >>PXE-Boot-Server unter CentOS 7.x einrichten<<]]**
 +  * **[[wiki:start|Zurück zu Projekte und Themenkapitel]]**
 +  * **[[http://dokuwiki.nausch.org/doku.php/|Zurück zur Startseite]]**
  
  
-https://access.redhat.com/documentation/en-US/Red_Hat_Enterprise_Linux/7/html/Installation_Guide/chap-kickstart-installations.html 
  
-   # yum install pykickstart -y 
  
-   # rpm -qil pykickstart 
-<code>Name        : pykickstart 
-Version     : 1.99.66.10 
-Release     : 1.el7 
-Architecture: noarch 
-Install Date: Mon 04 Jan 2016 04:42:21 PM CET 
-Group       : System Environment/Libraries 
-Size        : 1611424 
-License     : GPLv2 
-Signature   : RSA/SHA256, Sun 20 Nov 2016 09:13:45 PM CET, Key ID 24c6a8a7f4a80eb5 
-Source RPM  : pykickstart-1.99.66.10-1.el7.src.rpm 
-Build Date  : Sun 06 Nov 2016 02:28:02 AM CET 
-Build Host  : worker1.bsys.centos.org 
-Relocations : (not relocatable) 
-Packager    : CentOS BuildSystem <http://bugs.centos.org> 
-Vendor      : CentOS 
-URL         : http://fedoraproject.org/wiki/pykickstart 
-Summary     : A python library for manipulating kickstart files 
-Description : 
-The pykickstart package is a python library for manipulating kickstart 
-files. 
-/usr/bin/ksflatten 
-/usr/bin/ksshell 
-/usr/bin/ksvalidator 
-/usr/bin/ksverdiff 
-/usr/lib/python2.7/site-packages/pykickstart 
-/usr/lib/python2.7/site-packages/pykickstart-1.99.66.10-py2.7.egg-info 
-/usr/lib/python2.7/site-packages/pykickstart/__init__.py 
-/usr/lib/python2.7/site-packages/pykickstart/__init__.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/__init__.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/base.py 
-/usr/lib/python2.7/site-packages/pykickstart/base.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/base.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands 
-/usr/lib/python2.7/site-packages/pykickstart/commands/__init__.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/__init__.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/__init__.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/authconfig.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/authconfig.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/authconfig.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/autopart.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/autopart.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/autopart.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/autostep.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/autostep.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/autostep.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/bootloader.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/bootloader.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/bootloader.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/btrfs.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/btrfs.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/btrfs.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/cdrom.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/cdrom.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/cdrom.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/clearpart.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/clearpart.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/clearpart.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/device.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/device.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/device.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/deviceprobe.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/deviceprobe.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/deviceprobe.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/displaymode.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/displaymode.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/displaymode.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/dmraid.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/dmraid.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/dmraid.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/driverdisk.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/driverdisk.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/driverdisk.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/eula.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/eula.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/eula.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/fcoe.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/fcoe.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/fcoe.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/firewall.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/firewall.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/firewall.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/firstboot.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/firstboot.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/firstboot.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/group.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/group.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/group.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/harddrive.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/harddrive.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/harddrive.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/ignoredisk.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/ignoredisk.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/ignoredisk.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/interactive.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/interactive.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/interactive.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/iscsi.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/iscsi.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/iscsi.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/iscsiname.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/iscsiname.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/iscsiname.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/key.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/key.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/key.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/keyboard.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/keyboard.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/keyboard.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/lang.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/lang.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/lang.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/langsupport.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/langsupport.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/langsupport.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/lilocheck.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/lilocheck.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/lilocheck.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/liveimg.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/liveimg.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/liveimg.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/logging.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/logging.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/logging.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/logvol.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/logvol.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/logvol.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/mediacheck.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/mediacheck.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/mediacheck.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/method.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/method.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/method.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/monitor.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/monitor.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/monitor.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/mouse.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/mouse.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/mouse.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/multipath.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/multipath.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/multipath.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/network.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/network.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/network.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/nfs.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/nfs.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/nfs.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/ostreesetup.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/ostreesetup.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/ostreesetup.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/partition.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/partition.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/partition.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/raid.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/raid.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/raid.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/realm.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/realm.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/realm.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/reboot.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/reboot.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/reboot.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/repo.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/repo.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/repo.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/reqpart.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/reqpart.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/reqpart.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/rescue.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/rescue.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/rescue.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/rootpw.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/rootpw.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/rootpw.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/selinux.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/selinux.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/selinux.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/services.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/services.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/services.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/skipx.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/skipx.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/skipx.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/sshkey.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/sshkey.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/sshkey.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/sshpw.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/sshpw.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/sshpw.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/timezone.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/timezone.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/timezone.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/unsupported_hardware.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/unsupported_hardware.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/unsupported_hardware.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/updates.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/updates.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/updates.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/upgrade.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/upgrade.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/upgrade.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/url.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/url.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/url.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/user.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/user.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/user.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/vnc.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/vnc.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/vnc.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/volgroup.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/volgroup.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/volgroup.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/xconfig.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/xconfig.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/xconfig.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/zerombr.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/zerombr.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/zerombr.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/commands/zfcp.py 
-/usr/lib/python2.7/site-packages/pykickstart/commands/zfcp.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/commands/zfcp.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/constants.py 
-/usr/lib/python2.7/site-packages/pykickstart/constants.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/constants.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/errors.py 
-/usr/lib/python2.7/site-packages/pykickstart/errors.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/errors.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/__init__.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/__init__.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/__init__.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/control.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/control.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/control.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f10.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f10.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f10.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f11.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f11.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f11.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f12.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f12.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f12.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f13.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f13.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f13.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f14.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f14.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f14.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f15.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f15.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f15.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f16.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f16.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f16.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f17.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f17.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f17.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f18.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f18.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f18.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f19.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f19.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f19.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f20.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f20.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f20.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f21.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f21.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f21.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f22.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f22.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f22.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f7.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f7.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f7.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f8.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f8.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f8.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f9.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f9.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/f9.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/fc3.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/fc3.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/fc3.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/fc4.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/fc4.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/fc4.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/fc5.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/fc5.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/fc5.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/fc6.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/fc6.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/fc6.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel3.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel3.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel3.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel4.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel4.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel4.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel5.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel5.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel5.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel6.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel6.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel6.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel7.py 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel7.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/handlers/rhel7.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/ko.py 
-/usr/lib/python2.7/site-packages/pykickstart/ko.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/ko.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/options.py 
-/usr/lib/python2.7/site-packages/pykickstart/options.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/options.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/parser.py 
-/usr/lib/python2.7/site-packages/pykickstart/parser.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/parser.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/sections.py 
-/usr/lib/python2.7/site-packages/pykickstart/sections.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/sections.pyo 
-/usr/lib/python2.7/site-packages/pykickstart/version.py 
-/usr/lib/python2.7/site-packages/pykickstart/version.pyc 
-/usr/lib/python2.7/site-packages/pykickstart/version.pyo 
-/usr/share/doc/pykickstart-1.99.66.10 
-/usr/share/doc/pykickstart-1.99.66.10/README 
-/usr/share/doc/pykickstart-1.99.66.10/kickstart-docs.rst 
-/usr/share/doc/pykickstart-1.99.66.10/programmers-guide 
-/usr/share/licenses/pykickstart-1.99.66.10 
-/usr/share/licenses/pykickstart-1.99.66.10/COPYING 
-/usr/share/locale/af/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/am/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/anp/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ar/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/as/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ast/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/bal/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/be/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/bg/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/bn/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/bn_IN/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/bo/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/br/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/brx/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/bs/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ca/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/cs/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/cy/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/da/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/de/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/de_CH/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/el/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/en_GB/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/eo/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/es/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/et/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/eu/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/fa/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/fi/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/fr/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/gl/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/gu/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/he/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/hi/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/hr/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/hu/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ia/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/id/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ilo/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/is/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/it/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ja/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ka/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/kk/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/km/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/kn/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ko/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/kw/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/kw@kkcor/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/kw@uccor/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/kw_GB/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ky/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/lt/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/lv/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/mai/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/mk/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ml/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/mn/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/mr/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ms/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/nb/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/nds/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ne/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/nl/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/nn/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/nso/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/or/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/pa/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/pl/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/pt/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/pt_BR/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ro/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ru/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/si/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/sk/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/sl/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/sq/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/sr/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/sr@latin/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/sv/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ta/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/te/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/tg/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/th/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/tr/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/tw/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/uk/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/ur/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/vi/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/wba/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/yo/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/zh_CN/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/zh_HK/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/zh_TW/LC_MESSAGES/pykickstart.mo 
-/usr/share/locale/zu/LC_MESSAGES/pykickstart.mo 
-/usr/share/man/man1/ksflatten.1.gz 
-/usr/share/man/man1/ksshell.1.gz 
-/usr/share/man/man1/ksvalidator.1.gz 
-/usr/share/man/man1/ksverdiff.1.gz</code> 
  
-   # ksvalidator /srv/kickstart/ks_centos_7_x86_64_dmz.cfg 
  
  
  • centos/pxe_c7/pxe_1.1483658140.txt.gz
  • Zuletzt geändert: 05.01.2017 23:15.
  • von django