Login
[x]
Log in using an account from:
Fedora Account System
Red Hat Associate
Red Hat Customer
Or login using a Red Hat Bugzilla account
Forgot Password
Login:
Hide Forgot
Create an Account
Red Hat Bugzilla – Attachment 853199 Details for
Bug 1056024
DeviceError: ('cannot replace active format', 'sdf')
[?]
New
Simple Search
Advanced Search
My Links
Browse
Requests
Reports
Current State
Search
Tabular reports
Graphical reports
Duplicates
Other Reports
User Changes
Plotly Reports
Bug Status
Bug Severity
Non-Defaults
|
Product Dashboard
Help
Page Help!
Bug Writing Guidelines
What's new
Browser Support Policy
5.0.4.rh83 Release notes
FAQ
Guides index
User guide
Web Services
Contact
Legal
This site requires JavaScript to be enabled to function correctly, please enable it.
File: ks.cfg
ks.cfg (text/plain), 7.91 KB, created by
Xiaowei Li
on 2014-01-21 12:19:21 UTC
(
hide
)
Description:
File: ks.cfg
Filename:
MIME Type:
Creator:
Xiaowei Li
Created:
2014-01-21 12:19:21 UTC
Size:
7.91 KB
patch
obsolete
>nfs --server vtap-bos-eng01.bos.redhat.com --dir /vol/engineering/devarchive/redhat/nightly/RHEL-7.0-20140121.n.0/compose/Server/x86_64/os/ >#url --url=nfs://vtap-bos-eng01.bos.redhat.com:/vol/engineering/devarchive/redhat/nightly/RHEL-7.0-20140121.n.0/compose/Server/x86_64/os/ > > >%pre --log=/dev/console >set -x > ># no snippet data for RedHatEnterpriseLinux7_pre ># no snippet data for system_pre >%end > > >%post --log=/dev/console >set -x ># Check in with Beaker Server, let it know our hostname, and ># record our install time. >REPORTED_FQDN=$(hostname -f) >if [[ -z "$REPORTED_FQDN" || $REPORTED_FQDN == localhost || $REPORTED_FQDN == localhost.* ]] ; then > # hostname -f is the most future-proof approach, but it isn't always reliable > if [ -f /etc/hostname ] ; then > # Preferred fallback if the OS is recent enough to provide it > REPORTED_FQDN=$(cat /etc/hostname) > elif grep -q ^HOSTNAME= /etc/sysconfig/network ; then > # Last resort fallback to try to report something sensible > REPORTED_FQDN=$(grep ^HOSTNAME= /etc/sysconfig/network | cut -f2- -d=) > fi >fi >curl http://lab-02.rhts.eng.bos.redhat.com:8000/install_done//$REPORTED_FQDN > >curl http://lab-02.rhts.eng.bos.redhat.com:8000/nopxe/storageqe-16.rhts.eng.bos.redhat.com > ># If netboot_method= is found in /proc/cmdline record it to /root >netboot_method=$(perl -n -e'/netboot_method=([^\s]+)/ && print $1' /proc/cmdline) >if [ -n "$netboot_method" ]; then >echo $netboot_method >/root/NETBOOT_METHOD.TXT >fi > ># Enable post-install boot notification > >if [ -e /etc/sysconfig/ntpdate ] ; then > /sbin/chkconfig ntpdate on >/dev/null 2>&1 || : >fi >if [ -e "/etc/sysconfig/ntpd" ]; then > /sbin/chkconfig ntpd on >/dev/null 2>&1 || : > GOT_G=$(/bin/cat /etc/sysconfig/ntpd | grep -E '^OPTIONS' | grep '\-g') > > if [ -z "$GOT_G" ]; then > /bin/sed -i -r 's/(^OPTIONS\s*=\s*)(['\''|"])(.+)$/\1\2\-x \3 /' /etc/sysconfig/ntpd > fi >fi >if [ -e /etc/chrony.conf ] ; then > cp /etc/chrony.conf{,.orig} > # use only DHCP-provided time servers, no default pool servers > sed -i '/^server /d' /etc/chrony.conf > cp /etc/sysconfig/network{,.orig} > # setting iburst should speed up initial sync > # https://bugzilla.redhat.com/show_bug.cgi?id=787042#c12 > echo NTPSERVERARGS=iburst >>/etc/sysconfig/network > /sbin/chkconfig ntpd off >/dev/null 2>&1 || : > /sbin/chkconfig ntpdate off >/dev/null 2>&1 || : >fi > > >if efibootmgr &>/dev/null ; then > # The installer should have added a new boot entry for the OS > # at the top of the boot order. We move it to the end of the order > # and set it as BootNext instead. > boot_order=$(efibootmgr | awk '/BootOrder/ { print $2 }') > os_boot_entry=$(cut -d, -f1 <<<"$boot_order") > new_boot_order=$(cut -d, -f2- <<<"$boot_order"),"$os_boot_entry" > efibootmgr -o "$new_boot_order" > efibootmgr -n "$os_boot_entry" > # save the boot entry for later, so that rhts-reboot can set BootNext as well > echo "$os_boot_entry" >/root/EFI_BOOT_ENTRY.TXT >fi > > > >#Add Task Repo > > ># Add Harness Repo > ># Add distro and custom Repos >cat <<"EOF" >/etc/yum.repos.d/beaker-HighAvailability.repo >[beaker-HighAvailability] >name=beaker-HighAvailability >baseurl=http://download.eng.bos.redhat.com/nightly/RHEL-7.0-20140121.n.0/compose/Server/x86_64/os/addons/HighAvailability >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-LoadBalancer.repo >[beaker-LoadBalancer] >name=beaker-LoadBalancer >baseurl=http://download.eng.bos.redhat.com/nightly/RHEL-7.0-20140121.n.0/compose/Server/x86_64/os/addons/LoadBalancer >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-ResilientStorage.repo >[beaker-ResilientStorage] >name=beaker-ResilientStorage >baseurl=http://download.eng.bos.redhat.com/nightly/RHEL-7.0-20140121.n.0/compose/Server/x86_64/os/addons/ResilientStorage >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-Server-debuginfo.repo >[beaker-Server-debuginfo] >name=beaker-Server-debuginfo >baseurl=http://download.eng.bos.redhat.com/nightly/RHEL-7.0-20140121.n.0/compose/Server/x86_64/debug/tree >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-Server-optional-debuginfo.repo >[beaker-Server-optional-debuginfo] >name=beaker-Server-optional-debuginfo >baseurl=http://download.eng.bos.redhat.com/nightly/RHEL-7.0-20140121.n.0/compose/Server-optional/x86_64/debug/tree >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-Server-SAP-debuginfo.repo >[beaker-Server-SAP-debuginfo] >name=beaker-Server-SAP-debuginfo >baseurl=http://download.eng.bos.redhat.com/nightly/RHEL-7.0-20140121.n.0/compose/Server-SAP/x86_64/debug/tree >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-Server-SAP.repo >[beaker-Server-SAP] >name=beaker-Server-SAP >baseurl=http://download.eng.bos.redhat.com/nightly/RHEL-7.0-20140121.n.0/compose/Server-SAP/x86_64/os >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-Server-optional.repo >[beaker-Server-optional] >name=beaker-Server-optional >baseurl=http://download.eng.bos.redhat.com/nightly/RHEL-7.0-20140121.n.0/compose/Server-optional/x86_64/os >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF >cat <<"EOF" >/etc/yum.repos.d/beaker-Server.repo >[beaker-Server] >name=beaker-Server >baseurl=http://download.eng.bos.redhat.com/nightly/RHEL-7.0-20140121.n.0/compose/Server/x86_64/os >enabled=1 >gpgcheck=0 >skip_if_unavailable=1 >EOF > > ># fill the yum cache and redirect output to /dev/null ># This speeds up yum because of a bug where it will update stdout too often. ># http://lists.baseurl.org/pipermail/yum-devel/2011-December/008857.html >yum check-update > /dev/null 2>&1 || true > >#Add test user account >useradd --password '$6$oIW3o2Mr$XbWZKaM7nA.cQqudfDJScupXOia5h1u517t6Htx/Q/MgXm82Pc/OcytatTeI4ULNWOMJzvpCigWiL4xKP9PX4.' test >cat <<"EOF" >/etc/profile.d/beaker.sh >export BEAKER="https://beaker.engineering.redhat.com/" >export BEAKER_JOB_WHITEBOARD='' >export BEAKER_RECIPE_WHITEBOARD='' >EOF >cat <<"EOF" >/etc/profile.d/beaker.csh >setenv BEAKER "https://beaker.engineering.redhat.com/" >setenv BEAKER_JOB_WHITEBOARD '' >setenv BEAKER_RECIPE_WHITEBOARD '' >EOF >cat << EOF > /etc/profile.d/rh-env.sh >export LAB_CONTROLLER=lab-02.rhts.eng.bos.redhat.com >export DUMPSERVER=netdump-01.eng.bos.redhat.com >export NFSSERVERS="rhel4-nfs.rhts.eng.bos.redhat.com:/export/home rhel5-nfs.rhts.eng.bos.redhat.com:/export/home rhel6-nfs.rhts.eng.bos.redhat.com:/export/home netapp-nfs.lab.bos.redhat.com:/vol/vol0/home/cthon sol10-nfs.lab.bos.redhat.com:/export/home" >export LOOKASIDE=http://download.eng.bos.redhat.com/qa/rhts/lookaside/ >export BUILDURL=http://download.eng.bos.redhat.com >EOF >cat << EOF > /etc/profile.d/rh-env.csh >setenv LAB_CONTROLLER lab-02.rhts.eng.bos.redhat.com >setenv DUMPSERVER netdump-01.eng.bos.redhat.com >setenv NFSSERVERS "rhel4-nfs.rhts.eng.bos.redhat.com:/export/home rhel5-nfs.rhts.eng.bos.redhat.com:/export/home rhel6-nfs.rhts.eng.bos.redhat.com:/export/home netapp-nfs.lab.bos.redhat.com:/vol/vol0/home/cthon sol10-nfs.lab.bos.redhat.com:/export/home" >setenv LOOKASIDE http://download.eng.bos.redhat.com/qa/rhts/lookaside/ >setenv BUILDURL http://download.eng.bos.redhat.com >EOF >mkdir -p /root/.ssh >cat >>/root/.ssh/authorized_keys <<"__EOF__" >ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAoaA/uipXj5H0PT38Q3TAWhXof5xfFU8R+Tpf3nYBrdxdKkMB5zV/CtcHPhcZTJxIqinUZRodaKzQkBK4SdHe3gc4nH5x1opKW4kC38Dr93ypIBZifdg4Z15Zxru4aFjlfLZZwbT3I3AOMlVoxS7pgxi9RHjfyZu0SKIh3GlRmVO4506ibxECzXdrpJTyVetOrG71Zu3n8nWtNpKNo+mDGYegLBzECZI9an1cwLG5SFOgWp1wiIZO/Z+3mrc/rs9LWlg5LkH61bhsvS4PnUkgL1ZgHznJ9Ma0Ozubx9X83F7tUalCdvZX/R6rNvFqXPT10/HstlL3wZLV7cUfnbsF2w== xiaoli@jordan.nay.redhat.com >__EOF__ >restorecon -R /root/.ssh >chmod go-w /root /root/.ssh /root/.ssh/authorized_keys ># Disable rhts-compat for Fedora15/RHEL7 and newer. >cat >> /etc/profile.d/task-overrides-rhts.sh <<END >export RHTS_OPTION_COMPATIBLE= >export RHTS_OPTION_COMPAT_SERVICE= >END ># no snippet data for RedHatEnterpriseLinux7_post ># no snippet data for system_post >%end > > >
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 1056024
:
853196
|
853197
|
853198
| 853199 |
853200
|
853201
|
853202
|
853203
|
853204
|
853205
|
853206
|
853207