Sent from my iPhone

> On Sep 19, 2016, at 3:25 PM, Kapilraj Koroth <kapilr...@gmail.com> wrote:
> 
> Installed cobbler server on RHEL 6.8
> Installed the latest version of cobbler from EPEL 2.6.11
> Imported RHEL 7.0 and 7.2 distributions from the binary DVD.
> Made a kickstart file as follows, slight changes from RHEL6
> 
> <code>
> auth  --useshadow  --enablemd5
> bootloader --location=mbr
> clearpart --all --initlabel
> text
> firewall --disabled
> firstboot --disable
> keyboard us
> lang en_US
> url --url=$tree
> reboot --eject
> rootpw --plaintext abc123
> selinux --disabled
> skipx
> timezone --utc America/Chicago
> install
> zerombr
> part /boot --fstype ext3 --size=1024 --ondisk=sda
> part pv.01 --size=1 --grow --ondisk=sda
> volgroup sysvg --pesize=65536 pv.01
> logvol swap --fstype swap --name=swap --vgname=sysvg --size=8192
> logvol /opt --fstype ext4 --name=opt --vgname=sysvg --size=6144
> logvol / --fstype ext4 --name=root --vgname=sysvg --size=2048
> logvol /home --fstype ext4 --name=home --vgname=sysvg --size=1024
> logvol /tmp --fstype ext4 --name=tmp --vgname=sysvg --size=2048
> logvol /usr --fstype ext4 --name=usr --vgname=sysvg --size=5120
> logvol /var --fstype ext4 --name=var --vgname=sysvg --size=8192
> 
> $yum_repo_stanza
> 
> $SNIPPET('network_config')
> 
> %pre
> $SNIPPET('log_ks_pre')
> $SNIPPET('kickstart_start')
> $SNIPPET('pre_install_network_config')
> $SNIPPET('pre_anamon')
> %end
> 
> %packages
> $SNIPPET('func_install_if_enabled')
> $SNIPPET('puppet_install_if_enabled')
> %end
> 
> %post
> $SNIPPET('log_ks_post')
> $yum_config_stanza
> $SNIPPET('post_install_kernel_options')
> $SNIPPET('post_install_network_config')
> $SNIPPET('func_register_if_enabled')
> $SNIPPET('puppet_register_if_enabled')
> $SNIPPET('download_config_files')
> $SNIPPET('koan_environment')
> $SNIPPET('redhat_register')
> $SNIPPET('cobbler_register')
> # Enable post-install boot notification
> $SNIPPET('post_anamon')
> # Start final steps
> $SNIPPET('kickstart_done')
> # End final steps
> %end
> 
> </code>
> 
> Created a boot ISO, booted from it to perform a RHEL7 install. It fails with 
> this error message with some python errors
> 
> NoSuchGroup: core
> 
> Any idea whats wrong here ?. All VMs are on VirtualBox running on Fedora.
> _______________________________________________
> cobbler mailing list -- cobbler@lists.fedorahosted.org
> To unsubscribe send an email to cobbler-le...@lists.fedorahosted.org
_______________________________________________
cobbler mailing list -- cobbler@lists.fedorahosted.org
To unsubscribe send an email to cobbler-le...@lists.fedorahosted.org

Reply via email to