add progress update integration test.

Change-Id: Icba29fb271b09665dee21ea42aed598901b3cb96
This commit is contained in:
Xicheng Chang 2014-03-18 10:28:36 -07:00
parent 202a904188
commit b4ada2e9cc
64 changed files with 32860 additions and 28 deletions

View File

@ -87,7 +87,7 @@ class ApacheCheck(base.BaseCheck):
except Exception:
self._set_status(
0,
"[%s]Error: Apache is not running on Port 80."
"[%s]Error: Apache is not listening on port 80."
% self.NAME)
return True

View File

@ -47,39 +47,28 @@ class CeleryCheck(base.BaseCheck):
'configdir': 'CELERYCONFIG_DIR',
'configfile': 'CELERYCONFIG_FILE',
}
unset = []
res = health_check_utils.validate_setting('Celery',
self.config,
'CELERY_LOGFILE')
if res is True:
logfile = self.config.CELERY_LOGFILE
else:
logfile = ""
if res is False:
unset.append(setting_map["logfile"])
self._set_status(0, res)
res = health_check_utils.validate_setting('Celery',
self.config,
'CELERYCONFIG_DIR')
if res is True:
configdir = self.config.CELERYCONFIG_DIR
else:
configdir = ""
if res is False:
unset.append(setting_map["configdir"])
self._set_status(0, res)
res = health_check_utils.validate_setting('Celery',
self.config,
'CELERYCONFIG_FILE')
if res is True:
configfile = self.config.CELERYCONFIG_FILE
else:
configfile = ""
if res is False:
unset.append(setting_map["configdir"])
self._set_status(0, res)
unset = []
for item in [logfile, configdir, configfile]:
if item == "":
unset.append(setting_map[item])
if len(unset) != 0:
self._set_status(0,
"[%s]Error: Unset celery settings: %s"

View File

@ -54,6 +54,7 @@ class DhcpCheck(base.BaseCheck):
self.messages.append(
"[%s]Info: DHCP service is "
"not managed by Compass" % self.NAME)
self.code = 0
return (self.code, self.messages)
self.check_cobbler_dhcp_template()

View File

@ -50,7 +50,7 @@ class DnsCheck(base.BaseCheck):
cobbler_settings = remote.get_settings()
if cobbler_settings['manage_dns'] == 0:
self.messages.append('[DNS]Info: DNS is not managed by Compass')
return (self.code, self.messages)
return (0, self.messages)
self.check_cobbler_dns_template()
print "[Done]"
self.check_dns_service()

View File

@ -58,7 +58,7 @@ class HdsCheck(base.BaseCheck):
yum_base = pkg_module.YumBase()
uninstalled = []
for package in ['net-snmp-utils', 'net-snmp', 'net-snmp-python']:
if not yum_base.rpmdb.searchNevra(name=package):
if len(yum_base.rpmdb.searchNevra(name=package)) == 0:
self.messages.append("[%s]Error: %s package is required "
"for HDS" % (self.NAME, package))
uninstalled.append(package)

View File

@ -86,7 +86,7 @@ class MiscCheck(base.BaseCheck):
yum_base = pkg_module.YumBase()
uninstalled = []
for package in self.MISC_MAPPING["yum"]:
if not yum_base.rpmdb.searchNevra(name=package):
if len(yum_base.rpmdb.searchNevra(name=package)) == 0:
self._set_status(
0,
"[%s]Error: %s package is required"

View File

@ -52,7 +52,7 @@ class SquidCheck(base.BaseCheck):
"/etc/squid/squid.conf")
if not conf_err_msg == "":
self._set_status(0, conf_err_msg)
elif int(oct(os.stat('/etc/squid/squid.conf').st_mode)) < 644:
elif int(oct(os.stat('/etc/squid/squid.conf').st_mode)) < 100644:
self._set_status(
0,
"[%s]Error: squid.conf has incorrect "

View File

@ -55,7 +55,7 @@ class TftpCheck(base.BaseCheck):
if cobbler_settings['manage_tftp'] == 0:
self.messages.append(
'[TFTP]Info: tftp service is not managed by Compass')
return (self.code, self.messages)
return (0, self.messages)
self.check_tftp_dir()
print "[Done]"
self.check_tftp_service()

View File

@ -55,7 +55,7 @@ def check_path(module_name, path):
err_msg = ""
if not os.path.exists(path):
err_msg = (
"[%s]Error: %s does not exsit, "
"[%s]Error: %s does not exist, "
"please check your configurations.") % (module_name, path)
return err_msg

View File

View File

@ -0,0 +1,62 @@
networking = {
'global': {
'default_no_proxy': ['127.0.0.1', 'localhost'],
'search_path_pattern': '%(clusterid)s.%(search_path)s %(search_path)s',
'noproxy_pattern': '%(hostname)s.%(clusterid)s,%(ip)s'
},
'interfaces': {
'management': {
'dns_pattern': '%(hostname)s.%(clusterid)s.%(search_path)s',
'netmask': '255.255.255.0',
'nic': 'eth0',
'promisc': 0,
},
'tenant': {
'netmask': '255.255.255.0',
'nic': 'eth0',
'dns_pattern': 'virtual-%(hostname)s.%(clusterid)s.%(search_path)s',
'promisc': 0,
},
'public': {
'netmask': '255.255.255.0',
'nic': 'eth1',
'dns_pattern': 'floating-%(hostname)s.%(clusterid)s.%(search_path)s',
'promisc': 1,
},
'storage': {
'netmask': '255.255.255.0',
'nic': 'eth0',
'dns_pattern': 'storage-%(hostname)s.%(clusterid)s.%(search_path)s',
'promisc': 0,
},
},
}
security = {
'server_credentials': {
'username': 'root',
'password': 'huawei',
},
'console_credentials': {
'username': 'admin',
'password': 'huawei',
},
'service_credentials': {
'username': 'admin',
'password': 'huawei',
},
}
role_assign_policy = {
'policy_by_host_numbers': {
},
'default': {
'roles': [],
'maxs': {},
'mins': {},
'default_max': -1,
'default_min': 0,
'exclusives': [],
'bundles': [],
},
}

View File

@ -0,0 +1,61 @@
05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af
05:51:20,534 INFO : text mode forced from cmdline
05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return
05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting
05:51:20,656 DEBUG : Saving module ipv6
05:51:20,656 DEBUG : Saving module iscsi_ibft
05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs
05:51:20,656 DEBUG : Saving module pcspkr
05:51:20,656 DEBUG : Saving module edd
05:51:20,656 DEBUG : Saving module floppy
05:51:20,656 DEBUG : Saving module iscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi
05:51:20,656 DEBUG : Saving module scsi_transport_iscsi
05:51:20,656 DEBUG : Saving module squashfs
05:51:20,656 DEBUG : Saving module cramfs
05:51:20,656 DEBUG : probing buses
05:51:20,693 DEBUG : waiting for hardware to initialize
05:51:27,902 DEBUG : probing buses
05:51:27,925 DEBUG : waiting for hardware to initialize
05:51:47,187 INFO : getting kickstart file
05:51:47,196 INFO : eth0 has link, using it
05:51:47,208 INFO : doing kickstart... setting it up
05:51:47,208 DEBUG : activating device eth0
05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated
05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,611 INFO : setting up kickstart
05:51:52,611 INFO : kickstart forcing text mode
05:51:52,611 INFO : kickstartFromUrl
05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64
05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2
05:51:52,616 INFO : drive status is CDS_TRAY_OPEN
05:51:52,616 ERROR : Drive tray reports open when it should be closed
05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,636 DEBUG : going to set language to en_US.UTF-8
05:52:07,636 INFO : setting language to en_US.UTF-8
05:52:07,654 INFO : starting STEP_METHOD
05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog
05:52:07,654 DEBUG : skipMethodDialog is set
05:52:07,663 INFO : starting STEP_STAGE2
05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img
05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null)
05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory
05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img
05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error
05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img
05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,403 INFO : Loading SELinux policy
05:52:48,130 INFO : getting ready to spawn shell now
05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda
05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it
05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.
warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning)
05:52:54,868 INFO : Running kickstart %%pre script(s)
05:52:54,868 WARNING : '/bin/sh' specified as full path
05:52:56,966 INFO : All kickstart %%pre script(s) have been run

View File

@ -0,0 +1,286 @@
05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af
05:51:20,534 INFO : text mode forced from cmdline
05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return
05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting
05:51:20,656 DEBUG : Saving module ipv6
05:51:20,656 DEBUG : Saving module iscsi_ibft
05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs
05:51:20,656 DEBUG : Saving module pcspkr
05:51:20,656 DEBUG : Saving module edd
05:51:20,656 DEBUG : Saving module floppy
05:51:20,656 DEBUG : Saving module iscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi
05:51:20,656 DEBUG : Saving module scsi_transport_iscsi
05:51:20,656 DEBUG : Saving module squashfs
05:51:20,656 DEBUG : Saving module cramfs
05:51:20,656 DEBUG : probing buses
05:51:20,693 DEBUG : waiting for hardware to initialize
05:51:27,902 DEBUG : probing buses
05:51:27,925 DEBUG : waiting for hardware to initialize
05:51:47,187 INFO : getting kickstart file
05:51:47,196 INFO : eth0 has link, using it
05:51:47,208 INFO : doing kickstart... setting it up
05:51:47,208 DEBUG : activating device eth0
05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated
05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,611 INFO : setting up kickstart
05:51:52,611 INFO : kickstart forcing text mode
05:51:52,611 INFO : kickstartFromUrl
05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64
05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2
05:51:52,616 INFO : drive status is CDS_TRAY_OPEN
05:51:52,616 ERROR : Drive tray reports open when it should be closed
05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,636 DEBUG : going to set language to en_US.UTF-8
05:52:07,636 INFO : setting language to en_US.UTF-8
05:52:07,654 INFO : starting STEP_METHOD
05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog
05:52:07,654 DEBUG : skipMethodDialog is set
05:52:07,663 INFO : starting STEP_STAGE2
05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img
05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null)
05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory
05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img
05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error
05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img
05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,403 INFO : Loading SELinux policy
05:52:48,130 INFO : getting ready to spawn shell now
05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda
05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it
05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.
warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning)
05:52:54,868 INFO : Running kickstart %%pre script(s)
05:52:54,868 WARNING : '/bin/sh' specified as full path
05:52:56,966 INFO : All kickstart %%pre script(s) have been run
05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid
05:52:57,017 INFO : no initiator set
05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path
05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD!
05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp
05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64']
05:53:00,903 INFO : Display mode = t
05:53:00,903 INFO : Default encoding = utf-8
05:53:01,064 INFO : Detected 2016M of memory
05:53:01,064 INFO : Swap attempt of 4032M
05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid
05:53:01,399 INFO : no initiator set
05:53:05,059 INFO : setting installation environment hostname to server1
05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid.
05:53:05,276 INFO : Detected 2016M of memory
05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead.
05:53:05,277 INFO : Swap attempt of 3276M
05:53:05,453 WARNING : step installtype does not exist
05:53:05,454 WARNING : step confirminstall does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,457 WARNING : step complete does not exist
05:53:05,457 INFO : moving (1) to step setuptime
05:53:05,458 DEBUG : setuptime is a direct step
22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path
22:53:06,002 INFO : leaving (1) step setuptime
22:53:06,003 INFO : moving (1) to step autopartitionexecute
22:53:06,003 DEBUG : autopartitionexecute is a direct step
22:53:06,138 INFO : leaving (1) step autopartitionexecute
22:53:06,138 INFO : moving (1) to step storagedone
22:53:06,138 DEBUG : storagedone is a direct step
22:53:06,138 INFO : leaving (1) step storagedone
22:53:06,139 INFO : moving (1) to step enablefilesystems
22:53:06,139 DEBUG : enablefilesystems is a direct step
22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1
22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0
22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1
22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2
22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3
22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported
22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults
22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults
22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind
22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620
22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults
22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults
22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults
22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults
22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults
22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults
22:54:44,056 INFO : leaving (1) step enablefilesystems
22:54:44,057 INFO : moving (1) to step bootloadersetup
22:54:44,057 DEBUG : bootloadersetup is a direct step
22:54:44,061 INFO : leaving (1) step bootloadersetup
22:54:44,061 INFO : moving (1) to step reposetup
22:54:44,061 DEBUG : reposetup is a direct step
22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/
22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml
22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2
22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml
22:54:58,971 INFO : leaving (1) step reposetup
22:54:58,971 INFO : moving (1) to step basepkgsel
22:54:58,972 DEBUG : basepkgsel is a direct step
22:54:58,986 WARNING : not adding Base group
22:54:59,388 INFO : leaving (1) step basepkgsel
22:54:59,388 INFO : moving (1) to step postselection
22:54:59,388 DEBUG : postselection is a direct step
22:54:59,390 INFO : selected kernel package for kernel
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz
22:55:07,745 INFO : leaving (1) step postselection
22:55:07,745 INFO : moving (1) to step install
22:55:07,748 INFO : leaving (1) step install
22:55:07,748 INFO : moving (1) to step preinstallconfig
22:55:07,748 DEBUG : preinstallconfig is a direct step
22:55:08,087 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults
22:55:08,091 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults
22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:55:08,122 INFO : leaving (1) step preinstallconfig
22:55:08,122 INFO : moving (1) to step installpackages
22:55:08,122 DEBUG : installpackages is a direct step
22:55:08,122 INFO : Preparing to install packages
23:17:06,152 INFO : leaving (1) step installpackages
23:17:06,153 INFO : moving (1) to step postinstallconfig
23:17:06,153 DEBUG : postinstallconfig is a direct step
23:17:06,162 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64
23:17:06,181 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo
23:17:06,183 INFO : leaving (1) step postinstallconfig
23:17:06,184 INFO : moving (1) to step writeconfig
23:17:06,184 DEBUG : writeconfig is a direct step
23:17:06,184 INFO : Writing main configuration
23:17:06,219 WARNING : '/usr/sbin/authconfig' specified as full path
23:17:11,643 WARNING : '/usr/sbin/lokkit' specified as full path
23:17:11,703 WARNING : '/usr/sbin/lokkit' specified as full path
23:17:11,885 INFO : removing libuser.conf at /tmp/libuser.WMDW9M
23:17:11,885 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
23:17:12,722 INFO : leaving (1) step writeconfig
23:17:12,722 INFO : moving (1) to step firstboot
23:17:12,723 DEBUG : firstboot is a direct step
23:17:12,723 INFO : leaving (1) step firstboot
23:17:12,723 INFO : moving (1) to step instbootloader
23:17:12,724 DEBUG : instbootloader is a direct step
23:17:14,664 WARNING : '/sbin/grub-install' specified as full path
23:17:15,006 WARNING : '/sbin/grub' specified as full path
23:17:16,039 INFO : leaving (1) step instbootloader
23:17:16,040 INFO : moving (1) to step reipl
23:17:16,040 DEBUG : reipl is a direct step
23:17:16,040 INFO : leaving (1) step reipl
23:17:16,040 INFO : moving (1) to step writeksconfig
23:17:16,040 DEBUG : writeksconfig is a direct step
23:17:16,041 INFO : Writing autokickstart file
23:17:16,070 INFO : leaving (1) step writeksconfig
23:17:16,071 INFO : moving (1) to step setfilecon
23:17:16,071 DEBUG : setfilecon is a direct step
23:17:16,071 INFO : setting SELinux contexts for anaconda created files
23:17:17,822 INFO : leaving (1) step setfilecon
23:17:17,822 INFO : moving (1) to step copylogs
23:17:17,822 DEBUG : copylogs is a direct step
23:17:17,822 INFO : Copying anaconda logs
23:17:17,825 INFO : leaving (1) step copylogs
23:17:17,825 INFO : moving (1) to step methodcomplete
23:17:17,825 DEBUG : methodcomplete is a direct step
23:17:17,825 INFO : leaving (1) step methodcomplete
23:17:17,826 INFO : moving (1) to step postscripts
23:17:17,826 DEBUG : postscripts is a direct step
23:17:17,826 INFO : Running kickstart %%post script(s)
23:17:17,858 WARNING : '/bin/sh' specified as full path
23:17:21,002 INFO : All kickstart %%post script(s) have been run
23:17:21,002 INFO : leaving (1) step postscripts
23:17:21,002 INFO : moving (1) to step dopostaction
23:17:21,002 DEBUG : dopostaction is a direct step
23:17:21,003 INFO : leaving (1) step dopostaction

View File

@ -0,0 +1,141 @@
Installing libgcc-4.4.7-4.el6.x86_64
warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Installing setup-2.8.14-20.el6_4.1.noarch
Installing filesystem-2.4.30-3.el6.x86_64
Installing basesystem-10.0-4.el6.noarch
Installing ncurses-base-5.7-3.20090208.el6.x86_64
Installing kernel-firmware-2.6.32-431.el6.noarch
Installing tzdata-2013g-1.el6.noarch
Installing nss-softokn-freebl-3.14.3-9.el6.x86_64
Installing glibc-common-2.12-1.132.el6.x86_64
Installing glibc-2.12-1.132.el6.x86_64
Installing ncurses-libs-5.7-3.20090208.el6.x86_64
Installing bash-4.1.2-15.el6_4.x86_64
Installing libattr-2.4.44-7.el6.x86_64
Installing libcap-2.16-5.5.el6.x86_64
Installing zlib-1.2.3-29.el6.x86_64
Installing info-4.13a-8.el6.x86_64
Installing popt-1.13-7.el6.x86_64
Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64
Installing audit-libs-2.2-2.el6.x86_64
Installing libcom_err-1.41.12-18.el6.x86_64
Installing libacl-2.2.49-6.el6.x86_64
Installing db4-4.7.25-18.el6_4.x86_64
Installing nspr-4.10.0-1.el6.x86_64
Installing nss-util-3.15.1-3.el6.x86_64
Installing readline-6.0-4.el6.x86_64
Installing libsepol-2.0.41-4.el6.x86_64
Installing libselinux-2.0.94-5.3.el6_4.1.x86_64
Installing shadow-utils-4.1.4.2-13.el6.x86_64
Installing sed-4.2.1-10.el6.x86_64
Installing bzip2-libs-1.0.5-7.el6_0.x86_64
Installing libuuid-2.17.2-12.14.el6.x86_64
Installing libstdc++-4.4.7-4.el6.x86_64
Installing libblkid-2.17.2-12.14.el6.x86_64
Installing gawk-3.1.7-10.el6.x86_64
Installing file-libs-5.04-15.el6.x86_64
Installing libgpg-error-1.7-4.el6.x86_64
Installing dbus-libs-1.2.24-7.el6_3.x86_64
Installing libudev-147-2.51.el6.x86_64
Installing pcre-7.8-6.el6.x86_64
Installing grep-2.6.3-4.el6.x86_64
Installing lua-5.1.4-4.1.el6.x86_64
Installing sqlite-3.6.20-1.el6.x86_64
Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64
Installing libidn-1.18-2.el6.x86_64
Installing expat-2.0.1-11.el6_2.x86_64
Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64
Installing elfutils-libelf-0.152-1.el6.x86_64
Installing libgcrypt-1.4.5-11.el6_4.x86_64
Installing bzip2-1.0.5-7.el6_0.x86_64
Installing findutils-4.4.2-6.el6.x86_64
Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64
Installing checkpolicy-2.0.22-1.el6.x86_64
Installing cpio-2.10-11.el6_3.x86_64
Installing which-2.19-6.el6.x86_64
Installing libxml2-2.7.6-14.el6.x86_64
Installing libedit-2.11-4.20080712cvs.1.el6.x86_64
Installing pth-2.0.7-9.3.el6.x86_64
Installing tcp_wrappers-libs-7.6-57.el6.x86_64
Installing sysvinit-tools-2.87-5.dsf.el6.x86_64
Installing libtasn1-2.3-3.el6_2.1.x86_64
Installing p11-kit-0.18.5-2.el6.x86_64
Installing p11-kit-trust-0.18.5-2.el6.x86_64
Installing ca-certificates-2013.1.94-65.0.el6.noarch
Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64
Installing nss-softokn-3.14.3-9.el6.x86_64
Installing libnih-1.0.1-7.el6.x86_64
Installing upstart-0.6.5-12.el6_4.1.x86_64
Installing file-5.04-15.el6.x86_64
Installing gmp-4.3.1-7.el6_2.2.x86_64
Installing libusb-0.1.12-23.el6.x86_64
Installing MAKEDEV-3.24-6.el6.x86_64
Installing libutempter-1.1.5-4.1.el6.x86_64
Installing psmisc-22.6-15.el6_0.1.x86_64
Installing net-tools-1.60-110.el6_2.x86_64
Installing vim-minimal-7.2.411-1.8.el6.x86_64
Installing tar-1.23-11.el6.x86_64
Installing procps-3.2.8-25.el6.x86_64
Installing db4-utils-4.7.25-18.el6_4.x86_64
Installing e2fsprogs-libs-1.41.12-18.el6.x86_64
Installing libss-1.41.12-18.el6.x86_64
Installing pinentry-0.7.6-6.el6.x86_64
Installing binutils-2.20.51.0.2-5.36.el6.x86_64
Installing m4-1.4.13-5.el6.x86_64
Installing diffutils-2.8.1-28.el6.x86_64
Installing make-3.81-20.el6.x86_64
Installing dash-0.5.5.1-4.el6.x86_64
Installing ncurses-5.7-3.20090208.el6.x86_64
Installing groff-1.18.1.4-21.el6.x86_64
Installing less-436-10.el6.x86_64
Installing coreutils-libs-8.4-31.el6.x86_64
Installing gzip-1.3.12-19.el6_4.x86_64
Installing cracklib-2.8.16-4.el6.x86_64
Installing cracklib-dicts-2.8.16-4.el6.x86_64
Installing coreutils-8.4-31.el6.x86_64
Installing pam-1.1.1-17.el6.x86_64
Installing module-init-tools-3.9-21.el6_4.x86_64
Installing hwdata-0.233-9.1.el6.noarch
Installing redhat-logos-60.0.14-12.el6.centos.noarch
Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64
Installing libpciaccess-0.13.1-2.el6.x86_64
Installing nss-3.15.1-15.el6.x86_64
Installing nss-sysinit-3.15.1-15.el6.x86_64
Installing nss-tools-3.15.1-15.el6.x86_64
Installing openldap-2.4.23-32.el6_4.1.x86_64
Installing logrotate-3.7.8-17.el6.x86_64
Installing gdbm-1.8.0-36.el6.x86_64
Installing mingetty-1.08-5.el6.x86_64
Installing keyutils-libs-1.4-4.el6.x86_64
Installing krb5-libs-1.10.3-10.el6_4.6.x86_64
Installing openssl-1.0.1e-15.el6.x86_64
Installing libssh2-1.4.2-1.el6.x86_64
Installing libcurl-7.19.7-37.el6_4.x86_64
Installing gnupg2-2.0.14-6.el6_4.x86_64
Installing gpgme-1.1.8-3.el6.x86_64
Installing curl-7.19.7-37.el6_4.x86_64
Installing rpm-libs-4.8.0-37.el6.x86_64
Installing rpm-4.8.0-37.el6.x86_64
Installing fipscheck-lib-1.2.0-7.el6.x86_64
Installing fipscheck-1.2.0-7.el6.x86_64
Installing mysql-libs-5.1.71-1.el6.x86_64
Installing ethtool-3.5-1.el6.x86_64
Installing pciutils-libs-3.1.10-2.el6.x86_64
Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64
Installing libcap-ng-0.6.4-3.el6_0.1.x86_64
Installing libffi-3.0.5-3.2.el6.x86_64
Installing python-2.6.6-51.el6.x86_64
Installing python-libs-2.6.6-51.el6.x86_64
Installing python-pycurl-7.19.0-8.el6.x86_64
Installing python-urlgrabber-3.9.1-9.el6.noarch
Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64
Installing rpm-python-4.8.0-37.el6.x86_64
Installing python-iniparse-0.3.1-2.1.el6.noarch
Installing slang-2.2.1-1.el6.x86_64
Installing newt-0.52.11-3.el6.x86_64
Installing newt-python-0.52.11-3.el6.x86_64
Installing ustr-1.0.4-9.1.el6.x86_64
Installing libsemanage-2.0.43-4.2.el6.x86_64
Installing libaio-0.3.107-10.el6.x86_64
Installing pkgconfig-0.23-9.1.el6.x86_64
Installing gamin-0.1.10-9.el6.x86_64

View File

@ -0,0 +1,286 @@
05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af
05:51:20,534 INFO : text mode forced from cmdline
05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return
05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting
05:51:20,656 DEBUG : Saving module ipv6
05:51:20,656 DEBUG : Saving module iscsi_ibft
05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs
05:51:20,656 DEBUG : Saving module pcspkr
05:51:20,656 DEBUG : Saving module edd
05:51:20,656 DEBUG : Saving module floppy
05:51:20,656 DEBUG : Saving module iscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi
05:51:20,656 DEBUG : Saving module scsi_transport_iscsi
05:51:20,656 DEBUG : Saving module squashfs
05:51:20,656 DEBUG : Saving module cramfs
05:51:20,656 DEBUG : probing buses
05:51:20,693 DEBUG : waiting for hardware to initialize
05:51:27,902 DEBUG : probing buses
05:51:27,925 DEBUG : waiting for hardware to initialize
05:51:47,187 INFO : getting kickstart file
05:51:47,196 INFO : eth0 has link, using it
05:51:47,208 INFO : doing kickstart... setting it up
05:51:47,208 DEBUG : activating device eth0
05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated
05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,611 INFO : setting up kickstart
05:51:52,611 INFO : kickstart forcing text mode
05:51:52,611 INFO : kickstartFromUrl
05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64
05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2
05:51:52,616 INFO : drive status is CDS_TRAY_OPEN
05:51:52,616 ERROR : Drive tray reports open when it should be closed
05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,636 DEBUG : going to set language to en_US.UTF-8
05:52:07,636 INFO : setting language to en_US.UTF-8
05:52:07,654 INFO : starting STEP_METHOD
05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog
05:52:07,654 DEBUG : skipMethodDialog is set
05:52:07,663 INFO : starting STEP_STAGE2
05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img
05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null)
05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory
05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img
05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error
05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img
05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,403 INFO : Loading SELinux policy
05:52:48,130 INFO : getting ready to spawn shell now
05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda
05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it
05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.
warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning)
05:52:54,868 INFO : Running kickstart %%pre script(s)
05:52:54,868 WARNING : '/bin/sh' specified as full path
05:52:56,966 INFO : All kickstart %%pre script(s) have been run
05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid
05:52:57,017 INFO : no initiator set
05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path
05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD!
05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp
05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64']
05:53:00,903 INFO : Display mode = t
05:53:00,903 INFO : Default encoding = utf-8
05:53:01,064 INFO : Detected 2016M of memory
05:53:01,064 INFO : Swap attempt of 4032M
05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid
05:53:01,399 INFO : no initiator set
05:53:05,059 INFO : setting installation environment hostname to server1
05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid.
05:53:05,276 INFO : Detected 2016M of memory
05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead.
05:53:05,277 INFO : Swap attempt of 3276M
05:53:05,453 WARNING : step installtype does not exist
05:53:05,454 WARNING : step confirminstall does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,457 WARNING : step complete does not exist
05:53:05,457 INFO : moving (1) to step setuptime
05:53:05,458 DEBUG : setuptime is a direct step
22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path
22:53:06,002 INFO : leaving (1) step setuptime
22:53:06,003 INFO : moving (1) to step autopartitionexecute
22:53:06,003 DEBUG : autopartitionexecute is a direct step
22:53:06,138 INFO : leaving (1) step autopartitionexecute
22:53:06,138 INFO : moving (1) to step storagedone
22:53:06,138 DEBUG : storagedone is a direct step
22:53:06,138 INFO : leaving (1) step storagedone
22:53:06,139 INFO : moving (1) to step enablefilesystems
22:53:06,139 DEBUG : enablefilesystems is a direct step
22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1
22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0
22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1
22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2
22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3
22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported
22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults
22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults
22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind
22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620
22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults
22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults
22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults
22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults
22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults
22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults
22:54:44,056 INFO : leaving (1) step enablefilesystems
22:54:44,057 INFO : moving (1) to step bootloadersetup
22:54:44,057 DEBUG : bootloadersetup is a direct step
22:54:44,061 INFO : leaving (1) step bootloadersetup
22:54:44,061 INFO : moving (1) to step reposetup
22:54:44,061 DEBUG : reposetup is a direct step
22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/
22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml
22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2
22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml
22:54:58,971 INFO : leaving (1) step reposetup
22:54:58,971 INFO : moving (1) to step basepkgsel
22:54:58,972 DEBUG : basepkgsel is a direct step
22:54:58,986 WARNING : not adding Base group
22:54:59,388 INFO : leaving (1) step basepkgsel
22:54:59,388 INFO : moving (1) to step postselection
22:54:59,388 DEBUG : postselection is a direct step
22:54:59,390 INFO : selected kernel package for kernel
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz
22:55:07,745 INFO : leaving (1) step postselection
22:55:07,745 INFO : moving (1) to step install
22:55:07,748 INFO : leaving (1) step install
22:55:07,748 INFO : moving (1) to step preinstallconfig
22:55:07,748 DEBUG : preinstallconfig is a direct step
22:55:08,087 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults
22:55:08,091 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults
22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:55:08,122 INFO : leaving (1) step preinstallconfig
22:55:08,122 INFO : moving (1) to step installpackages
22:55:08,122 DEBUG : installpackages is a direct step
22:55:08,122 INFO : Preparing to install packages
23:17:06,152 INFO : leaving (1) step installpackages
23:17:06,153 INFO : moving (1) to step postinstallconfig
23:17:06,153 DEBUG : postinstallconfig is a direct step
23:17:06,162 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64
23:17:06,181 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo
23:17:06,183 INFO : leaving (1) step postinstallconfig
23:17:06,184 INFO : moving (1) to step writeconfig
23:17:06,184 DEBUG : writeconfig is a direct step
23:17:06,184 INFO : Writing main configuration
23:17:06,219 WARNING : '/usr/sbin/authconfig' specified as full path
23:17:11,643 WARNING : '/usr/sbin/lokkit' specified as full path
23:17:11,703 WARNING : '/usr/sbin/lokkit' specified as full path
23:17:11,885 INFO : removing libuser.conf at /tmp/libuser.WMDW9M
23:17:11,885 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
23:17:12,722 INFO : leaving (1) step writeconfig
23:17:12,722 INFO : moving (1) to step firstboot
23:17:12,723 DEBUG : firstboot is a direct step
23:17:12,723 INFO : leaving (1) step firstboot
23:17:12,723 INFO : moving (1) to step instbootloader
23:17:12,724 DEBUG : instbootloader is a direct step
23:17:14,664 WARNING : '/sbin/grub-install' specified as full path
23:17:15,006 WARNING : '/sbin/grub' specified as full path
23:17:16,039 INFO : leaving (1) step instbootloader
23:17:16,040 INFO : moving (1) to step reipl
23:17:16,040 DEBUG : reipl is a direct step
23:17:16,040 INFO : leaving (1) step reipl
23:17:16,040 INFO : moving (1) to step writeksconfig
23:17:16,040 DEBUG : writeksconfig is a direct step
23:17:16,041 INFO : Writing autokickstart file
23:17:16,070 INFO : leaving (1) step writeksconfig
23:17:16,071 INFO : moving (1) to step setfilecon
23:17:16,071 DEBUG : setfilecon is a direct step
23:17:16,071 INFO : setting SELinux contexts for anaconda created files
23:17:17,822 INFO : leaving (1) step setfilecon
23:17:17,822 INFO : moving (1) to step copylogs
23:17:17,822 DEBUG : copylogs is a direct step
23:17:17,822 INFO : Copying anaconda logs
23:17:17,825 INFO : leaving (1) step copylogs
23:17:17,825 INFO : moving (1) to step methodcomplete
23:17:17,825 DEBUG : methodcomplete is a direct step
23:17:17,825 INFO : leaving (1) step methodcomplete
23:17:17,826 INFO : moving (1) to step postscripts
23:17:17,826 DEBUG : postscripts is a direct step
23:17:17,826 INFO : Running kickstart %%post script(s)
23:17:17,858 WARNING : '/bin/sh' specified as full path
23:17:21,002 INFO : All kickstart %%post script(s) have been run
23:17:21,002 INFO : leaving (1) step postscripts
23:17:21,002 INFO : moving (1) to step dopostaction
23:17:21,002 DEBUG : dopostaction is a direct step
23:17:21,003 INFO : leaving (1) step dopostaction

View File

@ -0,0 +1,18 @@
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: execute[Keystone: sleep] ran successfully
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone] action create (openstack-identity::server line 73)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] owner changed to 163
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] mode changed to 700
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone/ssl] action create (openstack-identity::server line 79)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing file[/var/lib/keystone/keystone.db] action delete (openstack-identity::server line 87)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[keystone-manage pki_setup] action run (openstack-identity::server line 91)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing template[/etc/keystone/keystone.conf] action create (openstack-identity::server line 140)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] backed up to /var/chef/backup/etc/keystone/keystone.conf.chef-20140221203911.069202
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] updated file contents /etc/keystone/keystone.conf
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] owner changed to 163
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] mode changed to 644
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] sending restart action to service[keystone] (immediate)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing service[keystone] action restart (openstack-identity::server line 64)
Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] restarted
Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] sending run action to execute[Keystone: sleep] (immediate)
Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[Keystone: sleep] action run (openstack-identity::server line 58)
Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: execute[Keystone: sleep] ran successfully

View File

@ -0,0 +1,212 @@
Installing libgcc-4.4.7-4.el6.x86_64
warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Installing setup-2.8.14-20.el6_4.1.noarch
Installing filesystem-2.4.30-3.el6.x86_64
Installing basesystem-10.0-4.el6.noarch
Installing ncurses-base-5.7-3.20090208.el6.x86_64
Installing kernel-firmware-2.6.32-431.el6.noarch
Installing tzdata-2013g-1.el6.noarch
Installing nss-softokn-freebl-3.14.3-9.el6.x86_64
Installing glibc-common-2.12-1.132.el6.x86_64
Installing glibc-2.12-1.132.el6.x86_64
Installing ncurses-libs-5.7-3.20090208.el6.x86_64
Installing bash-4.1.2-15.el6_4.x86_64
Installing libattr-2.4.44-7.el6.x86_64
Installing libcap-2.16-5.5.el6.x86_64
Installing zlib-1.2.3-29.el6.x86_64
Installing info-4.13a-8.el6.x86_64
Installing popt-1.13-7.el6.x86_64
Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64
Installing audit-libs-2.2-2.el6.x86_64
Installing libcom_err-1.41.12-18.el6.x86_64
Installing libacl-2.2.49-6.el6.x86_64
Installing db4-4.7.25-18.el6_4.x86_64
Installing nspr-4.10.0-1.el6.x86_64
Installing nss-util-3.15.1-3.el6.x86_64
Installing readline-6.0-4.el6.x86_64
Installing libsepol-2.0.41-4.el6.x86_64
Installing libselinux-2.0.94-5.3.el6_4.1.x86_64
Installing shadow-utils-4.1.4.2-13.el6.x86_64
Installing sed-4.2.1-10.el6.x86_64
Installing bzip2-libs-1.0.5-7.el6_0.x86_64
Installing libuuid-2.17.2-12.14.el6.x86_64
Installing libstdc++-4.4.7-4.el6.x86_64
Installing libblkid-2.17.2-12.14.el6.x86_64
Installing gawk-3.1.7-10.el6.x86_64
Installing file-libs-5.04-15.el6.x86_64
Installing libgpg-error-1.7-4.el6.x86_64
Installing dbus-libs-1.2.24-7.el6_3.x86_64
Installing libudev-147-2.51.el6.x86_64
Installing pcre-7.8-6.el6.x86_64
Installing grep-2.6.3-4.el6.x86_64
Installing lua-5.1.4-4.1.el6.x86_64
Installing sqlite-3.6.20-1.el6.x86_64
Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64
Installing libidn-1.18-2.el6.x86_64
Installing expat-2.0.1-11.el6_2.x86_64
Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64
Installing elfutils-libelf-0.152-1.el6.x86_64
Installing libgcrypt-1.4.5-11.el6_4.x86_64
Installing bzip2-1.0.5-7.el6_0.x86_64
Installing findutils-4.4.2-6.el6.x86_64
Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64
Installing checkpolicy-2.0.22-1.el6.x86_64
Installing cpio-2.10-11.el6_3.x86_64
Installing which-2.19-6.el6.x86_64
Installing libxml2-2.7.6-14.el6.x86_64
Installing libedit-2.11-4.20080712cvs.1.el6.x86_64
Installing pth-2.0.7-9.3.el6.x86_64
Installing tcp_wrappers-libs-7.6-57.el6.x86_64
Installing sysvinit-tools-2.87-5.dsf.el6.x86_64
Installing libtasn1-2.3-3.el6_2.1.x86_64
Installing p11-kit-0.18.5-2.el6.x86_64
Installing p11-kit-trust-0.18.5-2.el6.x86_64
Installing ca-certificates-2013.1.94-65.0.el6.noarch
Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64
Installing nss-softokn-3.14.3-9.el6.x86_64
Installing libnih-1.0.1-7.el6.x86_64
Installing upstart-0.6.5-12.el6_4.1.x86_64
Installing file-5.04-15.el6.x86_64
Installing gmp-4.3.1-7.el6_2.2.x86_64
Installing libusb-0.1.12-23.el6.x86_64
Installing MAKEDEV-3.24-6.el6.x86_64
Installing libutempter-1.1.5-4.1.el6.x86_64
Installing psmisc-22.6-15.el6_0.1.x86_64
Installing net-tools-1.60-110.el6_2.x86_64
Installing vim-minimal-7.2.411-1.8.el6.x86_64
Installing tar-1.23-11.el6.x86_64
Installing procps-3.2.8-25.el6.x86_64
Installing db4-utils-4.7.25-18.el6_4.x86_64
Installing e2fsprogs-libs-1.41.12-18.el6.x86_64
Installing libss-1.41.12-18.el6.x86_64
Installing pinentry-0.7.6-6.el6.x86_64
Installing binutils-2.20.51.0.2-5.36.el6.x86_64
Installing m4-1.4.13-5.el6.x86_64
Installing diffutils-2.8.1-28.el6.x86_64
Installing make-3.81-20.el6.x86_64
Installing dash-0.5.5.1-4.el6.x86_64
Installing ncurses-5.7-3.20090208.el6.x86_64
Installing groff-1.18.1.4-21.el6.x86_64
Installing less-436-10.el6.x86_64
Installing coreutils-libs-8.4-31.el6.x86_64
Installing gzip-1.3.12-19.el6_4.x86_64
Installing cracklib-2.8.16-4.el6.x86_64
Installing cracklib-dicts-2.8.16-4.el6.x86_64
Installing coreutils-8.4-31.el6.x86_64
Installing pam-1.1.1-17.el6.x86_64
Installing module-init-tools-3.9-21.el6_4.x86_64
Installing hwdata-0.233-9.1.el6.noarch
Installing redhat-logos-60.0.14-12.el6.centos.noarch
Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64
Installing libpciaccess-0.13.1-2.el6.x86_64
Installing nss-3.15.1-15.el6.x86_64
Installing nss-sysinit-3.15.1-15.el6.x86_64
Installing nss-tools-3.15.1-15.el6.x86_64
Installing openldap-2.4.23-32.el6_4.1.x86_64
Installing logrotate-3.7.8-17.el6.x86_64
Installing gdbm-1.8.0-36.el6.x86_64
Installing mingetty-1.08-5.el6.x86_64
Installing keyutils-libs-1.4-4.el6.x86_64
Installing krb5-libs-1.10.3-10.el6_4.6.x86_64
Installing openssl-1.0.1e-15.el6.x86_64
Installing libssh2-1.4.2-1.el6.x86_64
Installing libcurl-7.19.7-37.el6_4.x86_64
Installing gnupg2-2.0.14-6.el6_4.x86_64
Installing gpgme-1.1.8-3.el6.x86_64
Installing curl-7.19.7-37.el6_4.x86_64
Installing rpm-libs-4.8.0-37.el6.x86_64
Installing rpm-4.8.0-37.el6.x86_64
Installing fipscheck-lib-1.2.0-7.el6.x86_64
Installing fipscheck-1.2.0-7.el6.x86_64
Installing mysql-libs-5.1.71-1.el6.x86_64
Installing ethtool-3.5-1.el6.x86_64
Installing pciutils-libs-3.1.10-2.el6.x86_64
Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64
Installing libcap-ng-0.6.4-3.el6_0.1.x86_64
Installing libffi-3.0.5-3.2.el6.x86_64
Installing python-2.6.6-51.el6.x86_64
Installing python-libs-2.6.6-51.el6.x86_64
Installing python-pycurl-7.19.0-8.el6.x86_64
Installing python-urlgrabber-3.9.1-9.el6.noarch
Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64
Installing rpm-python-4.8.0-37.el6.x86_64
Installing python-iniparse-0.3.1-2.1.el6.noarch
Installing slang-2.2.1-1.el6.x86_64
Installing newt-0.52.11-3.el6.x86_64
Installing newt-python-0.52.11-3.el6.x86_64
Installing ustr-1.0.4-9.1.el6.x86_64
Installing libsemanage-2.0.43-4.2.el6.x86_64
Installing libaio-0.3.107-10.el6.x86_64
Installing pkgconfig-0.23-9.1.el6.x86_64
Installing gamin-0.1.10-9.el6.x86_64
Installing glib2-2.26.1-3.el6.x86_64
Installing shared-mime-info-0.70-4.el6.x86_64
Installing libuser-0.56.13-5.el6.x86_64
Installing grubby-7.0.15-5.el6.x86_64
Installing yum-metadata-parser-1.1.2-16.el6.x86_64
Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch
Installing yum-3.2.29-40.el6.centos.noarch
Installing dbus-glib-0.86-6.el6.x86_64
Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64
Installing centos-release-6-5.el6.centos.11.1.x86_64
Installing policycoreutils-2.0.83-19.39.el6.x86_64
Installing iptables-1.4.7-11.el6.x86_64
Installing iproute-2.6.32-31.el6.x86_64
Installing iputils-20071127-17.el6_4.2.x86_64
Installing util-linux-ng-2.17.2-12.14.el6.x86_64
Installing initscripts-9.03.40-2.el6.centos.x86_64
Installing udev-147-2.51.el6.x86_64
Installing device-mapper-libs-1.02.79-8.el6.x86_64
Installing device-mapper-1.02.79-8.el6.x86_64
Installing device-mapper-event-libs-1.02.79-8.el6.x86_64
Installing openssh-5.3p1-94.el6.x86_64
Installing device-mapper-event-1.02.79-8.el6.x86_64
Installing lvm2-libs-2.02.100-8.el6.x86_64
Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64
Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64
Installing kpartx-0.4.9-72.el6.x86_64
Installing libdrm-2.4.45-2.el6.x86_64
Installing plymouth-0.8.3-27.el6.centos.x86_64
Installing rsyslog-5.8.10-8.el6.x86_64
Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64
Installing postfix-2.6.6-2.2.el6_1.x86_64
Installing cronie-anacron-1.4.4-12.el6.x86_64
Installing cronie-1.4.4-12.el6.x86_64
Installing crontabs-1.10-33.el6.noarch
Installing ntpdate-4.2.6p5-1.el6.centos.x86_64
Installing iptables-ipv6-1.4.7-11.el6.x86_64
Installing selinux-policy-3.7.19-231.el6.noarch
Installing kbd-misc-1.15-11.el6.noarch
Installing kbd-1.15-11.el6.x86_64
Installing dracut-004-335.el6.noarch
Installing dracut-kernel-004-335.el6.noarch
Installing kernel-2.6.32-431.el6.x86_64
Installing fuse-2.8.3-4.el6.x86_64
Installing selinux-policy-targeted-3.7.19-231.el6.noarch
Installing system-config-firewall-base-1.2.27-5.el6.noarch
Installing ntp-4.2.6p5-1.el6.centos.x86_64
Installing device-mapper-multipath-0.4.9-72.el6.x86_64
Installing cryptsetup-luks-1.2.0-7.el6.x86_64
Installing lvm2-2.02.100-8.el6.x86_64
Installing openssh-clients-5.3p1-94.el6.x86_64
Installing openssh-server-5.3p1-94.el6.x86_64
Installing mdadm-3.2.6-7.el6.x86_64
Installing b43-openfwwf-5.2-4.el6.noarch
Installing dhclient-4.1.1-38.P1.el6.centos.x86_64
Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64
Installing passwd-0.77-4.el6_2.2.x86_64
Installing authconfig-6.1.12-13.el6.x86_64
Installing grub-0.97-83.el6.x86_64
Installing efibootmgr-0.5.4-11.el6.x86_64
Installing wget-1.12-1.8.el6.x86_64
Installing sudo-1.8.6p3-12.el6.x86_64
Installing audit-2.2-2.el6.x86_64
Installing e2fsprogs-1.41.12-18.el6.x86_64
Installing xfsprogs-3.1.1-14.el6.x86_64
Installing acl-2.2.49-6.el6.x86_64
Installing attr-2.4.44-7.el6.x86_64
Installing chef-11.8.0-1.el6.x86_64
warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
Installing bridge-utils-1.2-10.el6.x86_64
Installing rootfiles-8.1-6.1.el6.noarch
*** FINISHED INSTALLING PACKAGES ***

View File

@ -0,0 +1,286 @@
05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af
05:51:20,534 INFO : text mode forced from cmdline
05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return
05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting
05:51:20,656 DEBUG : Saving module ipv6
05:51:20,656 DEBUG : Saving module iscsi_ibft
05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs
05:51:20,656 DEBUG : Saving module pcspkr
05:51:20,656 DEBUG : Saving module edd
05:51:20,656 DEBUG : Saving module floppy
05:51:20,656 DEBUG : Saving module iscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi
05:51:20,656 DEBUG : Saving module scsi_transport_iscsi
05:51:20,656 DEBUG : Saving module squashfs
05:51:20,656 DEBUG : Saving module cramfs
05:51:20,656 DEBUG : probing buses
05:51:20,693 DEBUG : waiting for hardware to initialize
05:51:27,902 DEBUG : probing buses
05:51:27,925 DEBUG : waiting for hardware to initialize
05:51:47,187 INFO : getting kickstart file
05:51:47,196 INFO : eth0 has link, using it
05:51:47,208 INFO : doing kickstart... setting it up
05:51:47,208 DEBUG : activating device eth0
05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated
05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,611 INFO : setting up kickstart
05:51:52,611 INFO : kickstart forcing text mode
05:51:52,611 INFO : kickstartFromUrl
05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64
05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2
05:51:52,616 INFO : drive status is CDS_TRAY_OPEN
05:51:52,616 ERROR : Drive tray reports open when it should be closed
05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,636 DEBUG : going to set language to en_US.UTF-8
05:52:07,636 INFO : setting language to en_US.UTF-8
05:52:07,654 INFO : starting STEP_METHOD
05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog
05:52:07,654 DEBUG : skipMethodDialog is set
05:52:07,663 INFO : starting STEP_STAGE2
05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img
05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null)
05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory
05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img
05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error
05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img
05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,403 INFO : Loading SELinux policy
05:52:48,130 INFO : getting ready to spawn shell now
05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda
05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it
05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.
warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning)
05:52:54,868 INFO : Running kickstart %%pre script(s)
05:52:54,868 WARNING : '/bin/sh' specified as full path
05:52:56,966 INFO : All kickstart %%pre script(s) have been run
05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid
05:52:57,017 INFO : no initiator set
05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path
05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD!
05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp
05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64']
05:53:00,903 INFO : Display mode = t
05:53:00,903 INFO : Default encoding = utf-8
05:53:01,064 INFO : Detected 2016M of memory
05:53:01,064 INFO : Swap attempt of 4032M
05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid
05:53:01,399 INFO : no initiator set
05:53:05,059 INFO : setting installation environment hostname to server1
05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid.
05:53:05,276 INFO : Detected 2016M of memory
05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead.
05:53:05,277 INFO : Swap attempt of 3276M
05:53:05,453 WARNING : step installtype does not exist
05:53:05,454 WARNING : step confirminstall does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,457 WARNING : step complete does not exist
05:53:05,457 INFO : moving (1) to step setuptime
05:53:05,458 DEBUG : setuptime is a direct step
22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path
22:53:06,002 INFO : leaving (1) step setuptime
22:53:06,003 INFO : moving (1) to step autopartitionexecute
22:53:06,003 DEBUG : autopartitionexecute is a direct step
22:53:06,138 INFO : leaving (1) step autopartitionexecute
22:53:06,138 INFO : moving (1) to step storagedone
22:53:06,138 DEBUG : storagedone is a direct step
22:53:06,138 INFO : leaving (1) step storagedone
22:53:06,139 INFO : moving (1) to step enablefilesystems
22:53:06,139 DEBUG : enablefilesystems is a direct step
22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1
22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0
22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1
22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2
22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3
22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported
22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults
22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults
22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind
22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620
22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults
22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults
22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults
22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults
22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults
22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults
22:54:44,056 INFO : leaving (1) step enablefilesystems
22:54:44,057 INFO : moving (1) to step bootloadersetup
22:54:44,057 DEBUG : bootloadersetup is a direct step
22:54:44,061 INFO : leaving (1) step bootloadersetup
22:54:44,061 INFO : moving (1) to step reposetup
22:54:44,061 DEBUG : reposetup is a direct step
22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/
22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml
22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2
22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml
22:54:58,971 INFO : leaving (1) step reposetup
22:54:58,971 INFO : moving (1) to step basepkgsel
22:54:58,972 DEBUG : basepkgsel is a direct step
22:54:58,986 WARNING : not adding Base group
22:54:59,388 INFO : leaving (1) step basepkgsel
22:54:59,388 INFO : moving (1) to step postselection
22:54:59,388 DEBUG : postselection is a direct step
22:54:59,390 INFO : selected kernel package for kernel
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz
22:55:07,745 INFO : leaving (1) step postselection
22:55:07,745 INFO : moving (1) to step install
22:55:07,748 INFO : leaving (1) step install
22:55:07,748 INFO : moving (1) to step preinstallconfig
22:55:07,748 DEBUG : preinstallconfig is a direct step
22:55:08,087 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults
22:55:08,091 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults
22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:55:08,122 INFO : leaving (1) step preinstallconfig
22:55:08,122 INFO : moving (1) to step installpackages
22:55:08,122 DEBUG : installpackages is a direct step
22:55:08,122 INFO : Preparing to install packages
23:17:06,152 INFO : leaving (1) step installpackages
23:17:06,153 INFO : moving (1) to step postinstallconfig
23:17:06,153 DEBUG : postinstallconfig is a direct step
23:17:06,162 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64
23:17:06,181 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo
23:17:06,183 INFO : leaving (1) step postinstallconfig
23:17:06,184 INFO : moving (1) to step writeconfig
23:17:06,184 DEBUG : writeconfig is a direct step
23:17:06,184 INFO : Writing main configuration
23:17:06,219 WARNING : '/usr/sbin/authconfig' specified as full path
23:17:11,643 WARNING : '/usr/sbin/lokkit' specified as full path
23:17:11,703 WARNING : '/usr/sbin/lokkit' specified as full path
23:17:11,885 INFO : removing libuser.conf at /tmp/libuser.WMDW9M
23:17:11,885 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
23:17:12,722 INFO : leaving (1) step writeconfig
23:17:12,722 INFO : moving (1) to step firstboot
23:17:12,723 DEBUG : firstboot is a direct step
23:17:12,723 INFO : leaving (1) step firstboot
23:17:12,723 INFO : moving (1) to step instbootloader
23:17:12,724 DEBUG : instbootloader is a direct step
23:17:14,664 WARNING : '/sbin/grub-install' specified as full path
23:17:15,006 WARNING : '/sbin/grub' specified as full path
23:17:16,039 INFO : leaving (1) step instbootloader
23:17:16,040 INFO : moving (1) to step reipl
23:17:16,040 DEBUG : reipl is a direct step
23:17:16,040 INFO : leaving (1) step reipl
23:17:16,040 INFO : moving (1) to step writeksconfig
23:17:16,040 DEBUG : writeksconfig is a direct step
23:17:16,041 INFO : Writing autokickstart file
23:17:16,070 INFO : leaving (1) step writeksconfig
23:17:16,071 INFO : moving (1) to step setfilecon
23:17:16,071 DEBUG : setfilecon is a direct step
23:17:16,071 INFO : setting SELinux contexts for anaconda created files
23:17:17,822 INFO : leaving (1) step setfilecon
23:17:17,822 INFO : moving (1) to step copylogs
23:17:17,822 DEBUG : copylogs is a direct step
23:17:17,822 INFO : Copying anaconda logs
23:17:17,825 INFO : leaving (1) step copylogs
23:17:17,825 INFO : moving (1) to step methodcomplete
23:17:17,825 DEBUG : methodcomplete is a direct step
23:17:17,825 INFO : leaving (1) step methodcomplete
23:17:17,826 INFO : moving (1) to step postscripts
23:17:17,826 DEBUG : postscripts is a direct step
23:17:17,826 INFO : Running kickstart %%post script(s)
23:17:17,858 WARNING : '/bin/sh' specified as full path
23:17:21,002 INFO : All kickstart %%post script(s) have been run
23:17:21,002 INFO : leaving (1) step postscripts
23:17:21,002 INFO : moving (1) to step dopostaction
23:17:21,002 DEBUG : dopostaction is a direct step
23:17:21,003 INFO : leaving (1) step dopostaction

View File

@ -0,0 +1,422 @@
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: execute[Keystone: sleep] ran successfully
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone] action create (openstack-identity::server line 73)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] owner changed to 163
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] mode changed to 700
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone/ssl] action create (openstack-identity::server line 79)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing file[/var/lib/keystone/keystone.db] action delete (openstack-identity::server line 87)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[keystone-manage pki_setup] action run (openstack-identity::server line 91)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing template[/etc/keystone/keystone.conf] action create (openstack-identity::server line 140)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] backed up to /var/chef/backup/etc/keystone/keystone.conf.chef-20140221203911.069202
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] updated file contents /etc/keystone/keystone.conf
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] owner changed to 163
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] mode changed to 644
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] sending restart action to service[keystone] (immediate)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing service[keystone] action restart (openstack-identity::server line 64)
Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] restarted
Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] sending run action to execute[Keystone: sleep] (immediate)
Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[Keystone: sleep] action run (openstack-identity::server line 58)
Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: execute[Keystone: sleep] ran successfully
Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: Processing template[/etc/keystone/default_catalog.templates] action create (openstack-identity::server line 158)
Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: Processing execute[keystone-manage db_sync] action run (openstack-identity::server line 172)
Feb 21 20:39:43 server1.1 [2014-02-21T20:39:42-08:00] INFO: execute[keystone-manage db_sync] ran successfully
Feb 21 20:39:43 server1.1 [2014-02-21T20:39:42-08:00] INFO: Processing bash[bootstrap-keystone-admin] action run (openstack-identity::registration line 40)
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: bash[bootstrap-keystone-admin] ran successfully
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Processing openstack-identity_register[Register 'admin' Tenant] action create_tenant (openstack-identity::registration line 80)
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Tenant 'admin' already exists.. Not creating.
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Tenant UUID: 87cf46951cc14159bd16b68e3eb96321
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Processing openstack-identity_register[Register 'service' Tenant] action create_tenant (openstack-identity::registration line 80)
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Created tenant 'service'
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Processing openstack-identity_register[Register 'admin' Role] action create_role (openstack-identity::registration line 92)
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Role 'admin' already exists.. Not creating.
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Role UUID: 8070c199fc2647c9a50176d11256bebc
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Processing openstack-identity_register[Register 'Member' Role] action create_role (openstack-identity::registration line 92)
Feb 21 20:39:47 server1.1 [2014-02-21T20:39:46-08:00] INFO: Created Role 'Member'
Feb 21 20:39:47 server1.1 [2014-02-21T20:39:46-08:00] INFO: Processing openstack-identity_register[Register 'compute' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:39:48 server1.1 [2014-02-21T20:39:47-08:00] INFO: Created user 'service' for tenant 'service'
Feb 21 20:39:48 server1.1 [2014-02-21T20:39:47-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:39:49 server1.1 [2014-02-21T20:39:48-08:00] INFO: Granted Role 'admin' to User 'service' in Tenant 'service'
Feb 21 20:39:49 server1.1 [2014-02-21T20:39:48-08:00] INFO: Processing openstack-identity_register[Register compute Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:39:50 server1.1 [2014-02-21T20:39:49-08:00] INFO: Created service 'nova'
Feb 21 20:39:50 server1.1 [2014-02-21T20:39:49-08:00] INFO: Processing openstack-identity_register[Register compute Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:39:50 server1.1 [2014-02-21T20:39:50-08:00] INFO: Created endpoint for service type 'compute'
Feb 21 20:39:50 server1.1 [2014-02-21T20:39:50-08:00] INFO: Processing openstack-identity_register[Register 'network' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:39:51 server1.1 [2014-02-21T20:39:50-08:00] INFO: User 'service' already exists for tenant 'service'
Feb 21 20:39:51 server1.1 [2014-02-21T20:39:50-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:39:52 server1.1 [2014-02-21T20:39:51-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service'
Feb 21 20:39:52 server1.1 [2014-02-21T20:39:51-08:00] INFO: Processing openstack-identity_register[Register network Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:39:53 server1.1 [2014-02-21T20:39:52-08:00] INFO: Created service 'quantum'
Feb 21 20:39:53 server1.1 [2014-02-21T20:39:52-08:00] INFO: Processing openstack-identity_register[Register network Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Created endpoint for service type 'network'
Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Processing openstack-identity_register[Register 'volume' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: User 'service' already exists for tenant 'service'
Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:39:55 server1.1 [2014-02-21T20:39:54-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service'
Feb 21 20:39:55 server1.1 [2014-02-21T20:39:54-08:00] INFO: Processing openstack-identity_register[Register volume Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:39:56 server1.1 [2014-02-21T20:39:55-08:00] INFO: Created service 'cinder'
Feb 21 20:39:56 server1.1 [2014-02-21T20:39:55-08:00] INFO: Processing openstack-identity_register[Register volume Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Created endpoint for service type 'volume'
Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Processing openstack-identity_register[Register identity Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Created service 'keystone'
Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Processing openstack-identity_register[Register identity Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:39:58 server1.1 [2014-02-21T20:39:57-08:00] INFO: Created endpoint for service type 'identity'
Feb 21 20:39:58 server1.1 [2014-02-21T20:39:57-08:00] INFO: Processing openstack-identity_register[Register 'image' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:39:59 server1.1 [2014-02-21T20:39:58-08:00] INFO: User 'service' already exists for tenant 'service'
Feb 21 20:39:59 server1.1 [2014-02-21T20:39:58-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:40:00 server1.1 [2014-02-21T20:39:59-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service'
Feb 21 20:40:00 server1.1 [2014-02-21T20:39:59-08:00] INFO: Processing openstack-identity_register[Register image Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:40:00 server1.1 [2014-02-21T20:40:00-08:00] INFO: Created service 'glance'
Feb 21 20:40:00 server1.1 [2014-02-21T20:40:00-08:00] INFO: Processing openstack-identity_register[Register image Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:40:01 server1.1 [2014-02-21T20:40:00-08:00] INFO: Created endpoint for service type 'image'
Feb 21 20:40:01 server1.1 [2014-02-21T20:40:00-08:00] INFO: Processing openstack-identity_register[Register 'object-store' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:40:02 server1.1 [2014-02-21T20:40:01-08:00] INFO: User 'service' already exists for tenant 'service'
Feb 21 20:40:02 server1.1 [2014-02-21T20:40:01-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:40:03 server1.1 [2014-02-21T20:40:02-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service'
Feb 21 20:40:03 server1.1 [2014-02-21T20:40:02-08:00] INFO: Processing openstack-identity_register[Register object-store Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:40:04 server1.1 [2014-02-21T20:40:03-08:00] INFO: Created service 'swift'
Feb 21 20:40:04 server1.1 [2014-02-21T20:40:03-08:00] INFO: Processing openstack-identity_register[Create EC2 credentials for 'admin' user] action create_ec2_credentials (openstack-identity::registration line 166)
Feb 21 20:40:05 server1.1 [2014-02-21T20:40:04-08:00] INFO: Created EC2 Credentials for User 'admin' in Tenant 'admin'
Feb 21 20:40:05 server1.1 [2014-02-21T20:40:04-08:00] INFO: Processing openstack-identity_register[Create EC2 credentials for 'monitoring' user] action create_ec2_credentials (openstack-identity::registration line 166)
Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] ERROR: Unable to create EC2 Credentials for User 'monitoring' in Tenant 'service'
Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] ERROR: Error was: Could not lookup uuid for ec2-credentials:tenant=>service. Error was 'Client' object has no attribute 'auth_user_id'
Feb 21 20:40:07 server1.1 (1)
Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] INFO: Processing package[openstack-cinder] action upgrade (openstack-block-storage::cinder-common line 26)
Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] INFO: package[openstack-cinder] installing openstack-cinder-2013.1.4-1.el6 from openstack repository
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: package[openstack-cinder] upgraded from uninstalled to 2013.1.4-1.el6
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/etc/cinder] action create (openstack-block-storage::cinder-common line 44)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] owner changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] group changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] mode changed to 750
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing template[/etc/cinder/cinder.conf] action create (openstack-block-storage::cinder-common line 51)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] backed up to /var/chef/backup/etc/cinder/cinder.conf.chef-20140221204110.415861
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] updated file contents /etc/cinder/cinder.conf
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] owner changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] mode changed to 644
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing package[python-cinderclient] action upgrade (openstack-block-storage::api line 32)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing package[MySQL-python] action upgrade (openstack-block-storage::api line 41)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/var/cache/cinder] action create (openstack-block-storage::api line 46)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] created directory /var/cache/cinder
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] owner changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] group changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] mode changed to 700
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/var/lock/cinder] action create (openstack-block-storage::api line 52)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] created directory /var/lock/cinder
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] owner changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] group changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] mode changed to 700
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing service[cinder-api] action enable (openstack-block-storage::api line 58)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: service[cinder-api] enabled
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing execute[cinder-manage db sync] action run (openstack-block-storage::api line 71)
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: execute[cinder-manage db sync] ran successfully
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing template[/etc/cinder/api-paste.ini] action create (openstack-block-storage::api line 73)
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] backed up to /var/chef/backup/etc/cinder/api-paste.ini.chef-20140221204130.194587
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] updated file contents /etc/cinder/api-paste.ini
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] owner changed to 165
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] mode changed to 644
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] sending restart action to service[cinder-api] (immediate)
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-api] action restart (openstack-block-storage::api line 58)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-api] restarted
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing template[/etc/cinder/policy.json] action create (openstack-block-storage::api line 88)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] backed up to /var/chef/backup/etc/cinder/policy.json.chef-20140221204130.442890
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] updated file contents /etc/cinder/policy.json
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] owner changed to 165
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] mode changed to 644
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] not queuing delayed action restart on service[cinder-api] (delayed), as it's already been queued
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing package[MySQL-python] action upgrade (openstack-block-storage::scheduler line 45)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-scheduler] action enable (openstack-block-storage::scheduler line 50)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-scheduler] enabled
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-scheduler] action start (openstack-block-storage::scheduler line 50)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-scheduler] started
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing package[openstack-nova-common] action upgrade (openstack-compute::nova-common line 37)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: package[openstack-nova-common] installing openstack-nova-common-2013.1.4-7.el6 from openstack repository
Feb 21 20:41:52 server1.1 [2014-02-21T20:41:52-08:00] INFO: package[openstack-nova-common] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:41:52 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[python-memcached] action install (openstack-compute::nova-common line 46)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/etc/nova] action create (openstack-compute::nova-common line 51)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] owner changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] group changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] mode changed to 700
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/etc/nova/rootwrap.d] action create (openstack-compute::nova-common line 59)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] created directory /etc/nova/rootwrap.d
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] mode changed to 700
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/nova.conf] action create (openstack-compute::nova-common line 134)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] backed up to /var/chef/backup/etc/nova/nova.conf.chef-20140221204152.340272
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] updated file contents /etc/nova/nova.conf
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] owner changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.conf] action create (openstack-compute::nova-common line 164)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] backed up to /var/chef/backup/etc/nova/rootwrap.conf.chef-20140221204152.347747
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] updated file contents /etc/nova/rootwrap.conf
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/api-metadata.filters] action create (openstack-compute::nova-common line 172)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] created file /etc/nova/rootwrap.d/api-metadata.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] updated file contents /etc/nova/rootwrap.d/api-metadata.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/compute.filters] action create (openstack-compute::nova-common line 180)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] created file /etc/nova/rootwrap.d/compute.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] updated file contents /etc/nova/rootwrap.d/compute.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/network.filters] action create (openstack-compute::nova-common line 188)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] created file /etc/nova/rootwrap.d/network.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] updated file contents /etc/nova/rootwrap.d/network.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/root/openrc] action create (openstack-compute::nova-common line 199)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] created file /root/openrc
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] updated file contents /root/openrc
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] mode changed to 600
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing execute[enable nova login] action run (openstack-compute::nova-common line 215)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: execute[enable nova login] ran successfully
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/var/lock/nova] action create (openstack-compute::api-ec2 line 28)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] created directory /var/lock/nova
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] owner changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] group changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] mode changed to 700
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[python-keystone] action upgrade (openstack-compute::api-ec2 line 36)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[openstack-nova-api] action upgrade (openstack-compute::api-ec2 line 41)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: package[openstack-nova-api] installing openstack-nova-api-2013.1.4-7.el6 from openstack repository
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: package[openstack-nova-api] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing service[nova-api-ec2] action enable (openstack-compute::api-ec2 line 48)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: service[nova-api-ec2] enabled
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing template[/etc/nova/api-paste.ini] action create (openstack-compute::api-ec2 line 74)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] backed up to /var/chef/backup/etc/nova/api-paste.ini.chef-20140221204156.594842
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] updated file contents /etc/nova/api-paste.ini
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] owner changed to 162
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] mode changed to 644
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] not queuing delayed action restart on service[nova-api-ec2] (delayed), as it's already been queued
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] not queuing delayed action restart on service[nova-api-os-compute] (delayed), as it's already been queued
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing directory[/var/lock/nova] action create (openstack-compute::api-os-compute line 28)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing directory[/var/cache/nova] action create (openstack-compute::api-os-compute line 34)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] created directory /var/cache/nova
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] owner changed to 162
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] group changed to 162
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] mode changed to 700
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing package[python-keystone] action upgrade (openstack-compute::api-os-compute line 40)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing package[openstack-nova-api] action upgrade (openstack-compute::api-os-compute line 45)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing service[nova-api-os-compute] action enable (openstack-compute::api-os-compute line 52)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing service[nova-api-os-compute] action start (openstack-compute::api-os-compute line 52)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: service[nova-api-os-compute] started
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: Processing template[/etc/nova/api-paste.ini] action create (openstack-compute::api-os-compute line 78)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: Processing package[openstack-nova-cert] action upgrade (openstack-compute::nova-cert line 25)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: package[openstack-nova-cert] installing openstack-nova-cert-2013.1.4-7.el6 from openstack repository
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: package[openstack-nova-cert] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing service[nova-cert] action enable (openstack-compute::nova-cert line 32)
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: service[nova-cert] enabled
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing service[nova-cert] action restart (openstack-compute::nova-cert line 32)
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: service[nova-cert] restarted
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing directory[/var/lock/nova] action create (openstack-compute::scheduler line 25)
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing package[openstack-nova-scheduler] action upgrade (openstack-compute::scheduler line 34)
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: package[openstack-nova-scheduler] installing openstack-nova-scheduler-2013.1.4-7.el6 from openstack repository
Feb 21 20:42:11 server1.1 [2014-02-21T20:42:11-08:00] INFO: package[openstack-nova-scheduler] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:42:11 server1.1 [2014-02-21T20:42:11-08:00] INFO: Processing service[nova-scheduler] action enable (openstack-compute::scheduler line 41)
Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: service[nova-scheduler] enabled
Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: Processing service[nova-scheduler] action restart (openstack-compute::scheduler line 41)
Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: service[nova-scheduler] restarted
Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: Processing package[openstack-nova-novncproxy] action upgrade (openstack-compute::vncproxy line 26)
Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: package[openstack-nova-novncproxy] installing openstack-nova-novncproxy-2013.1.4-7.el6 from openstack repository
Feb 21 20:42:21 server1.1 [2014-02-21T20:42:20-08:00] INFO: package[openstack-nova-novncproxy] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:42:21 server1.1 [2014-02-21T20:42:20-08:00] INFO: Processing package[openstack-nova-console] action upgrade (openstack-compute::vncproxy line 35)
Feb 21 20:42:21 server1.1 [2014-02-21T20:42:21-08:00] INFO: package[openstack-nova-console] installing openstack-nova-console-2013.1.4-7.el6 from openstack repository
Feb 21 20:42:25 server1.1 [2014-02-21T20:42:24-08:00] INFO: package[openstack-nova-console] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:42:25 server1.1 [2014-02-21T20:42:24-08:00] INFO: Processing package[openstack-nova-console] action upgrade (openstack-compute::vncproxy line 42)
Feb 21 20:42:25 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[openstack-nova-novncproxy] action enable (openstack-compute::vncproxy line 49)
Feb 21 20:42:25 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[openstack-nova-novncproxy] enabled
Feb 21 20:42:25 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[openstack-nova-novncproxy] action start (openstack-compute::vncproxy line 49)
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[openstack-nova-novncproxy] started
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-console] action enable (openstack-compute::vncproxy line 57)
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[nova-console] enabled
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-console] action start (openstack-compute::vncproxy line 57)
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[nova-console] started
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-consoleauth] action enable (openstack-compute::vncproxy line 64)
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[nova-consoleauth] enabled
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-consoleauth] action start (openstack-compute::vncproxy line 64)
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:26-08:00] INFO: service[nova-consoleauth] started
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:26-08:00] INFO: Processing package[openstack-nova-conductor] action upgrade (openstack-compute::conductor line 26)
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:26-08:00] INFO: package[openstack-nova-conductor] installing openstack-nova-conductor-2013.1.4-7.el6 from openstack repository
Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: package[openstack-nova-conductor] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: Processing service[nova-conductor] action enable (openstack-compute::conductor line 32)
Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: service[nova-conductor] enabled
Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: Processing service[nova-conductor] action restart (openstack-compute::conductor line 32)
Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: service[nova-conductor] restarted
Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: Processing execute[nova-manage db sync] action run (openstack-compute::nova-setup line 26)
Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: execute[nova-manage db sync] ran successfully
Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: Processing package[python-quantumclient] action upgrade (openstack-compute::nova-setup line 109)
Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: Processing package[pyparsing] action upgrade (openstack-compute::nova-setup line 109)
Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: Processing cookbook_file[/usr/local/bin/add_floaters.py] action create (openstack-compute::nova-setup line 115)
Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: cookbook_file[/usr/local/bin/add_floaters.py] created file /usr/local/bin/add_floaters.py
Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: cookbook_file[/usr/local/bin/add_floaters.py] updated file contents /usr/local/bin/add_floaters.py
Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: cookbook_file[/usr/local/bin/add_floaters.py] mode changed to 755
Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: Processing package[openstack-nova-network] action purge (openstack-network::common line 38)
Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: Processing package[openstack-quantum] action install (openstack-network::common line 44)
Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: package[openstack-quantum] installing openstack-quantum-2013.1.4-4.el6 from openstack repository
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing directory[/etc/quantum/plugins] action create (openstack-network::common line 49)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/etc/quantum/plugins] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/etc/quantum/plugins] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/etc/quantum/plugins] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing directory[/var/cache/quantum] action create (openstack-network::common line 57)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] created directory /var/cache/quantum
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing directory[/var/cache/quantum] action create (openstack-network::common line 64)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing remote_directory[/etc/quantum/rootwrap.d] action create (openstack-network::common line 74)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: remote_directory[/etc/quantum/rootwrap.d] created directory /etc/quantum/rootwrap.d
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] created file /etc/quantum/rootwrap.d/ryu-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] updated file contents /etc/quantum/rootwrap.d/ryu-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] created file /etc/quantum/rootwrap.d/openvswitch-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] updated file contents /etc/quantum/rootwrap.d/openvswitch-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] created file /etc/quantum/rootwrap.d/nec-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] updated file contents /etc/quantum/rootwrap.d/nec-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] created file /etc/quantum/rootwrap.d/linuxbridge-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] updated file contents /etc/quantum/rootwrap.d/linuxbridge-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] created file /etc/quantum/rootwrap.d/lbaas-haproxy.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] updated file contents /etc/quantum/rootwrap.d/lbaas-haproxy.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/l3.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] created file /etc/quantum/rootwrap.d/l3.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] updated file contents /etc/quantum/rootwrap.d/l3.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] created file /etc/quantum/rootwrap.d/iptables-firewall.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] updated file contents /etc/quantum/rootwrap.d/iptables-firewall.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] created file /etc/quantum/rootwrap.d/dhcp.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] updated file contents /etc/quantum/rootwrap.d/dhcp.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/debug.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] created file /etc/quantum/rootwrap.d/debug.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] updated file contents /etc/quantum/rootwrap.d/debug.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/rootwrap.conf] action create (openstack-network::common line 81)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] backed up to /var/chef/backup/etc/quantum/rootwrap.conf.chef-20140221204614.967634
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] updated file contents /etc/quantum/rootwrap.conf
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/policy.json] action create (openstack-network::common line 88)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] backed up to /var/chef/backup/etc/quantum/policy.json.chef-20140221204614.975067
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] updated file contents /etc/quantum/policy.json
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] mode changed to 644
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing execute[delete_auto_qpid] action nothing (openstack-network::common line 103)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing service[quantum-server] action nothing (openstack-network::common line 157)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/quantum.conf] action create (openstack-network::common line 165)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] backed up to /var/chef/backup/etc/quantum/quantum.conf.chef-20140221204614.991537
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] updated file contents /etc/quantum/quantum.conf
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] mode changed to 644
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] not queuing delayed action restart on service[quantum-server] (delayed), as it's already been queued
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/api-paste.ini] action create (openstack-network::common line 186)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/api-paste.ini] backed up to /var/chef/backup/etc/quantum/api-paste.ini.chef-20140221204614.998443
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/api-paste.ini] updated file contents /etc/quantum/api-paste.ini
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/api-paste.ini] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/api-paste.ini] mode changed to 644
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/api-paste.ini] not queuing delayed action restart on service[quantum-server] (delayed), as it's already been queued
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing directory[/etc/quantum/plugins/openvswitch] action create (openstack-network::common line 201)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] created directory /etc/quantum/plugins/openvswitch
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing service[quantum-plugin-openvswitch-agent] action nothing (openstack-network::common line 341)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] action create (openstack-network::common line 346)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] created file /etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] updated file contents /etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] mode changed to 644
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] not queuing delayed action restart on service[quantum-server] (delayed), as it's already been queued
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing template[/etc/default/quantum-server] action create (openstack-network::common line 395)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing package[openstack-quantum-openvswitch] action install (openstack-network::server line 42)
Feb 21 20:46:16 server1.1 [2014-02-21T20:46:15-08:00] INFO: package[openstack-quantum-openvswitch] installing openstack-quantum-openvswitch-2013.1.4-4.el6 from openstack repository
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing directory[/var/cache/quantum/api] action create (openstack-network::server line 49)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: directory[/var/cache/quantum/api] created directory /var/cache/quantum/api
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: directory[/var/cache/quantum/api] owner changed to 164
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: directory[/var/cache/quantum/api] group changed to 164
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing template[/etc/init.d/quantum-server] action create (openstack-network::server line 55)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: template[/etc/init.d/quantum-server] backed up to /var/chef/backup/etc/init.d/quantum-server.chef-20140221204621.125222
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: template[/etc/init.d/quantum-server] updated file contents /etc/init.d/quantum-server
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing service[quantum-server] action enable (openstack-network::server line 63)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: service[quantum-server] enabled
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing service[quantum-server] action restart (openstack-network::server line 63)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: service[quantum-server] restarted
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing cookbook_file[quantum-ha-tool] action create (openstack-network::server line 69)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] created file /usr/local/bin/quantum-ha-tool.py
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] updated file contents /usr/local/bin/quantum-ha-tool.py
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] owner changed to 0
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] group changed to 0
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] mode changed to 755
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing template[/etc/sysconfig/quantum] action create (openstack-network::server line 98)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: template[/etc/httpd/mods-available/deflate.conf] sending restart action to service[apache2] (delayed)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing service[apache2] action restart (apache2::default line 221)
Feb 21 20:46:23 server1.1 [2014-02-21T20:46:22-08:00] INFO: service[apache2] restarted
Feb 21 20:46:23 server1.1 [2014-02-21T20:46:22-08:00] INFO: [template[/etc/cinder/cinder.conf]] sending restart action to service[cinder-api] (delayed)
Feb 21 20:46:23 server1.1 [2014-02-21T20:46:22-08:00] INFO: Processing service[cinder-api] action restart (openstack-block-storage::api line 58)
Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: service[cinder-api] restarted
Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: [template[/etc/cinder/cinder.conf]] sending restart action to service[cinder-scheduler] (delayed)
Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: Processing service[cinder-scheduler] action restart (openstack-block-storage::scheduler line 50)
Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: service[cinder-scheduler] restarted
Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-api-ec2] (delayed)
Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: Processing service[nova-api-ec2] action restart (openstack-compute::api-ec2 line 48)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: service[nova-api-ec2] restarted
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-api-os-compute] (delayed)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: Processing service[nova-api-os-compute] action restart (openstack-compute::api-os-compute line 52)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: service[nova-api-os-compute] restarted
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-cert] (delayed)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: Processing service[nova-cert] action restart (openstack-compute::nova-cert line 32)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: service[nova-cert] restarted
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-scheduler] (delayed)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: Processing service[nova-scheduler] action restart (openstack-compute::scheduler line 41)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: service[nova-scheduler] restarted
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[openstack-nova-novncproxy] (delayed)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: Processing service[openstack-nova-novncproxy] action restart (openstack-compute::vncproxy line 49)
Feb 21 20:46:27 server1.1 [2014-02-21T20:46:26-08:00] INFO: service[openstack-nova-novncproxy] restarted
Feb 21 20:46:27 server1.1 [2014-02-21T20:46:26-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-console] (delayed)
Feb 21 20:46:27 server1.1 [2014-02-21T20:46:26-08:00] INFO: Processing service[nova-console] action restart (openstack-compute::vncproxy line 57)
Feb 21 20:46:27 server1.1 [2014-02-21T20:46:27-08:00] INFO: service[nova-console] restarted
Feb 21 20:46:27 server1.1 [2014-02-21T20:46:27-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-consoleauth] (delayed)
Feb 21 20:46:27 server1.1 [2014-02-21T20:46:27-08:00] INFO: Processing service[nova-consoleauth] action restart (openstack-compute::vncproxy line 64)
Feb 21 20:46:28 server1.1 [2014-02-21T20:46:27-08:00] INFO: service[nova-consoleauth] restarted
Feb 21 20:46:28 server1.1 [2014-02-21T20:46:27-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-conductor] (delayed)
Feb 21 20:46:28 server1.1 [2014-02-21T20:46:27-08:00] INFO: Processing service[nova-conductor] action restart (openstack-compute::conductor line 32)
Feb 21 20:46:28 server1.1 [2014-02-21T20:46:28-08:00] INFO: service[nova-conductor] restarted
Feb 21 20:46:28 server1.1 [2014-02-21T20:46:28-08:00] INFO: template[/etc/quantum/policy.json] sending restart action to service[quantum-server] (delayed)
Feb 21 20:46:28 server1.1 [2014-02-21T20:46:28-08:00] INFO: Processing service[quantum-server] action restart (openstack-network::server line 63)
Feb 21 20:46:29 server1.1 [2014-02-21T20:46:29-08:00] INFO: service[quantum-server] restarted
Feb 21 20:46:29 server1.1 [2014-02-21T20:46:29-08:00] INFO: Chef Run complete in 1449.433415826 seconds
Feb 21 20:46:30 server1.1 [2014-02-21T20:46:30-08:00] INFO: Running report handlers
Feb 21 20:46:30 server1.1 [2014-02-21T20:46:30-08:00] INFO: Report handlers complete

View File

@ -0,0 +1,212 @@
Installing libgcc-4.4.7-4.el6.x86_64
warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Installing setup-2.8.14-20.el6_4.1.noarch
Installing filesystem-2.4.30-3.el6.x86_64
Installing basesystem-10.0-4.el6.noarch
Installing ncurses-base-5.7-3.20090208.el6.x86_64
Installing kernel-firmware-2.6.32-431.el6.noarch
Installing tzdata-2013g-1.el6.noarch
Installing nss-softokn-freebl-3.14.3-9.el6.x86_64
Installing glibc-common-2.12-1.132.el6.x86_64
Installing glibc-2.12-1.132.el6.x86_64
Installing ncurses-libs-5.7-3.20090208.el6.x86_64
Installing bash-4.1.2-15.el6_4.x86_64
Installing libattr-2.4.44-7.el6.x86_64
Installing libcap-2.16-5.5.el6.x86_64
Installing zlib-1.2.3-29.el6.x86_64
Installing info-4.13a-8.el6.x86_64
Installing popt-1.13-7.el6.x86_64
Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64
Installing audit-libs-2.2-2.el6.x86_64
Installing libcom_err-1.41.12-18.el6.x86_64
Installing libacl-2.2.49-6.el6.x86_64
Installing db4-4.7.25-18.el6_4.x86_64
Installing nspr-4.10.0-1.el6.x86_64
Installing nss-util-3.15.1-3.el6.x86_64
Installing readline-6.0-4.el6.x86_64
Installing libsepol-2.0.41-4.el6.x86_64
Installing libselinux-2.0.94-5.3.el6_4.1.x86_64
Installing shadow-utils-4.1.4.2-13.el6.x86_64
Installing sed-4.2.1-10.el6.x86_64
Installing bzip2-libs-1.0.5-7.el6_0.x86_64
Installing libuuid-2.17.2-12.14.el6.x86_64
Installing libstdc++-4.4.7-4.el6.x86_64
Installing libblkid-2.17.2-12.14.el6.x86_64
Installing gawk-3.1.7-10.el6.x86_64
Installing file-libs-5.04-15.el6.x86_64
Installing libgpg-error-1.7-4.el6.x86_64
Installing dbus-libs-1.2.24-7.el6_3.x86_64
Installing libudev-147-2.51.el6.x86_64
Installing pcre-7.8-6.el6.x86_64
Installing grep-2.6.3-4.el6.x86_64
Installing lua-5.1.4-4.1.el6.x86_64
Installing sqlite-3.6.20-1.el6.x86_64
Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64
Installing libidn-1.18-2.el6.x86_64
Installing expat-2.0.1-11.el6_2.x86_64
Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64
Installing elfutils-libelf-0.152-1.el6.x86_64
Installing libgcrypt-1.4.5-11.el6_4.x86_64
Installing bzip2-1.0.5-7.el6_0.x86_64
Installing findutils-4.4.2-6.el6.x86_64
Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64
Installing checkpolicy-2.0.22-1.el6.x86_64
Installing cpio-2.10-11.el6_3.x86_64
Installing which-2.19-6.el6.x86_64
Installing libxml2-2.7.6-14.el6.x86_64
Installing libedit-2.11-4.20080712cvs.1.el6.x86_64
Installing pth-2.0.7-9.3.el6.x86_64
Installing tcp_wrappers-libs-7.6-57.el6.x86_64
Installing sysvinit-tools-2.87-5.dsf.el6.x86_64
Installing libtasn1-2.3-3.el6_2.1.x86_64
Installing p11-kit-0.18.5-2.el6.x86_64
Installing p11-kit-trust-0.18.5-2.el6.x86_64
Installing ca-certificates-2013.1.94-65.0.el6.noarch
Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64
Installing nss-softokn-3.14.3-9.el6.x86_64
Installing libnih-1.0.1-7.el6.x86_64
Installing upstart-0.6.5-12.el6_4.1.x86_64
Installing file-5.04-15.el6.x86_64
Installing gmp-4.3.1-7.el6_2.2.x86_64
Installing libusb-0.1.12-23.el6.x86_64
Installing MAKEDEV-3.24-6.el6.x86_64
Installing libutempter-1.1.5-4.1.el6.x86_64
Installing psmisc-22.6-15.el6_0.1.x86_64
Installing net-tools-1.60-110.el6_2.x86_64
Installing vim-minimal-7.2.411-1.8.el6.x86_64
Installing tar-1.23-11.el6.x86_64
Installing procps-3.2.8-25.el6.x86_64
Installing db4-utils-4.7.25-18.el6_4.x86_64
Installing e2fsprogs-libs-1.41.12-18.el6.x86_64
Installing libss-1.41.12-18.el6.x86_64
Installing pinentry-0.7.6-6.el6.x86_64
Installing binutils-2.20.51.0.2-5.36.el6.x86_64
Installing m4-1.4.13-5.el6.x86_64
Installing diffutils-2.8.1-28.el6.x86_64
Installing make-3.81-20.el6.x86_64
Installing dash-0.5.5.1-4.el6.x86_64
Installing ncurses-5.7-3.20090208.el6.x86_64
Installing groff-1.18.1.4-21.el6.x86_64
Installing less-436-10.el6.x86_64
Installing coreutils-libs-8.4-31.el6.x86_64
Installing gzip-1.3.12-19.el6_4.x86_64
Installing cracklib-2.8.16-4.el6.x86_64
Installing cracklib-dicts-2.8.16-4.el6.x86_64
Installing coreutils-8.4-31.el6.x86_64
Installing pam-1.1.1-17.el6.x86_64
Installing module-init-tools-3.9-21.el6_4.x86_64
Installing hwdata-0.233-9.1.el6.noarch
Installing redhat-logos-60.0.14-12.el6.centos.noarch
Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64
Installing libpciaccess-0.13.1-2.el6.x86_64
Installing nss-3.15.1-15.el6.x86_64
Installing nss-sysinit-3.15.1-15.el6.x86_64
Installing nss-tools-3.15.1-15.el6.x86_64
Installing openldap-2.4.23-32.el6_4.1.x86_64
Installing logrotate-3.7.8-17.el6.x86_64
Installing gdbm-1.8.0-36.el6.x86_64
Installing mingetty-1.08-5.el6.x86_64
Installing keyutils-libs-1.4-4.el6.x86_64
Installing krb5-libs-1.10.3-10.el6_4.6.x86_64
Installing openssl-1.0.1e-15.el6.x86_64
Installing libssh2-1.4.2-1.el6.x86_64
Installing libcurl-7.19.7-37.el6_4.x86_64
Installing gnupg2-2.0.14-6.el6_4.x86_64
Installing gpgme-1.1.8-3.el6.x86_64
Installing curl-7.19.7-37.el6_4.x86_64
Installing rpm-libs-4.8.0-37.el6.x86_64
Installing rpm-4.8.0-37.el6.x86_64
Installing fipscheck-lib-1.2.0-7.el6.x86_64
Installing fipscheck-1.2.0-7.el6.x86_64
Installing mysql-libs-5.1.71-1.el6.x86_64
Installing ethtool-3.5-1.el6.x86_64
Installing pciutils-libs-3.1.10-2.el6.x86_64
Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64
Installing libcap-ng-0.6.4-3.el6_0.1.x86_64
Installing libffi-3.0.5-3.2.el6.x86_64
Installing python-2.6.6-51.el6.x86_64
Installing python-libs-2.6.6-51.el6.x86_64
Installing python-pycurl-7.19.0-8.el6.x86_64
Installing python-urlgrabber-3.9.1-9.el6.noarch
Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64
Installing rpm-python-4.8.0-37.el6.x86_64
Installing python-iniparse-0.3.1-2.1.el6.noarch
Installing slang-2.2.1-1.el6.x86_64
Installing newt-0.52.11-3.el6.x86_64
Installing newt-python-0.52.11-3.el6.x86_64
Installing ustr-1.0.4-9.1.el6.x86_64
Installing libsemanage-2.0.43-4.2.el6.x86_64
Installing libaio-0.3.107-10.el6.x86_64
Installing pkgconfig-0.23-9.1.el6.x86_64
Installing gamin-0.1.10-9.el6.x86_64
Installing glib2-2.26.1-3.el6.x86_64
Installing shared-mime-info-0.70-4.el6.x86_64
Installing libuser-0.56.13-5.el6.x86_64
Installing grubby-7.0.15-5.el6.x86_64
Installing yum-metadata-parser-1.1.2-16.el6.x86_64
Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch
Installing yum-3.2.29-40.el6.centos.noarch
Installing dbus-glib-0.86-6.el6.x86_64
Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64
Installing centos-release-6-5.el6.centos.11.1.x86_64
Installing policycoreutils-2.0.83-19.39.el6.x86_64
Installing iptables-1.4.7-11.el6.x86_64
Installing iproute-2.6.32-31.el6.x86_64
Installing iputils-20071127-17.el6_4.2.x86_64
Installing util-linux-ng-2.17.2-12.14.el6.x86_64
Installing initscripts-9.03.40-2.el6.centos.x86_64
Installing udev-147-2.51.el6.x86_64
Installing device-mapper-libs-1.02.79-8.el6.x86_64
Installing device-mapper-1.02.79-8.el6.x86_64
Installing device-mapper-event-libs-1.02.79-8.el6.x86_64
Installing openssh-5.3p1-94.el6.x86_64
Installing device-mapper-event-1.02.79-8.el6.x86_64
Installing lvm2-libs-2.02.100-8.el6.x86_64
Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64
Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64
Installing kpartx-0.4.9-72.el6.x86_64
Installing libdrm-2.4.45-2.el6.x86_64
Installing plymouth-0.8.3-27.el6.centos.x86_64
Installing rsyslog-5.8.10-8.el6.x86_64
Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64
Installing postfix-2.6.6-2.2.el6_1.x86_64
Installing cronie-anacron-1.4.4-12.el6.x86_64
Installing cronie-1.4.4-12.el6.x86_64
Installing crontabs-1.10-33.el6.noarch
Installing ntpdate-4.2.6p5-1.el6.centos.x86_64
Installing iptables-ipv6-1.4.7-11.el6.x86_64
Installing selinux-policy-3.7.19-231.el6.noarch
Installing kbd-misc-1.15-11.el6.noarch
Installing kbd-1.15-11.el6.x86_64
Installing dracut-004-335.el6.noarch
Installing dracut-kernel-004-335.el6.noarch
Installing kernel-2.6.32-431.el6.x86_64
Installing fuse-2.8.3-4.el6.x86_64
Installing selinux-policy-targeted-3.7.19-231.el6.noarch
Installing system-config-firewall-base-1.2.27-5.el6.noarch
Installing ntp-4.2.6p5-1.el6.centos.x86_64
Installing device-mapper-multipath-0.4.9-72.el6.x86_64
Installing cryptsetup-luks-1.2.0-7.el6.x86_64
Installing lvm2-2.02.100-8.el6.x86_64
Installing openssh-clients-5.3p1-94.el6.x86_64
Installing openssh-server-5.3p1-94.el6.x86_64
Installing mdadm-3.2.6-7.el6.x86_64
Installing b43-openfwwf-5.2-4.el6.noarch
Installing dhclient-4.1.1-38.P1.el6.centos.x86_64
Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64
Installing passwd-0.77-4.el6_2.2.x86_64
Installing authconfig-6.1.12-13.el6.x86_64
Installing grub-0.97-83.el6.x86_64
Installing efibootmgr-0.5.4-11.el6.x86_64
Installing wget-1.12-1.8.el6.x86_64
Installing sudo-1.8.6p3-12.el6.x86_64
Installing audit-2.2-2.el6.x86_64
Installing e2fsprogs-1.41.12-18.el6.x86_64
Installing xfsprogs-3.1.1-14.el6.x86_64
Installing acl-2.2.49-6.el6.x86_64
Installing attr-2.4.44-7.el6.x86_64
Installing chef-11.8.0-1.el6.x86_64
warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
Installing bridge-utils-1.2-10.el6.x86_64
Installing rootfiles-8.1-6.1.el6.noarch
*** FINISHED INSTALLING PACKAGES ***

View File

@ -0,0 +1,182 @@
ADAPTERS = [
{'name': 'CentOS_openstack', 'os': 'CentOS', 'target_system': 'openstack'},
]
ROLES = [
{'name': 'os-single-controller', 'target_system': 'openstack'},
{'name': 'os-network', 'target_system': 'openstack'},
{'name': 'os-compute', 'target_system': 'openstack'},
]
SWITCHES = [
{'ip': '1.2.3.4', 'vendor': 'huawei', 'credential': {'version': 'v2c', 'community': 'public'}},
]
MACHINES_BY_SWITCH = {
'1.2.3.4': [
{'mac': '00:00:01:02:03:04', 'port': 1, 'vlan': 1},
],
}
CLUSTERS = [
{
'name': 'cluster1',
'adapter': 'CentOS_openstack',
'mutable': False,
'security': {
'server_credentials': {
'username': 'root', 'password': 'huawei'
},
'service_credentials': {
'username': 'service', 'password': 'huawei'
},
'console_credentials': {
'username': 'admin', 'password': 'huawei'
}
},
'networking': {
'interfaces': {
'management': {
'nic': 'eth0',
'promisc': 0,
'netmask': '255.255.255.0',
'ip_end': '192.168.20.200',
'gateway': '',
'ip_start': '192.168.20.100'
},
'storage': {
'nic': 'eth0',
'promisc': 0,
'netmask': '255.255.254.0',
'ip_end': '10.145.88.200',
'gateway': '10.145.88.1',
'ip_start': '10.145.88.100'
},
'public': {
'nic': 'eth2',
'promisc': 1,
'netmask': '255.255.254.0',
'ip_end': '10.145.88.255',
'gateway': '10.145.88.1',
'ip_start': '10.145.88.100'
},
'tenant': {
'nic': 'eth0',
'promisc': 0,
'netmask': '255.255.254.0',
'ip_end': '10.145.88.120',
'gateway': '10.145.88.1',
'ip_start': '10.145.88.100'
}
},
'global': {
'nameservers': '192.168.20.254',
'proxy': 'http://192.168.20.254:3128',
'ntp_server': '192.168.20.254',
'search_path': 'ods.com',
'gateway': '10.145.88.1'
},
},
'partition': '/home 20%%;/tmp 10%%;/var 30%%;',
},
]
HOSTS_BY_CLUSTER = {
'cluster1': [
{
'hostname': 'server1',
'mac': '00:00:01:02:03:04',
'mutable': False,
'config': {
'networking': {
'interfaces': {
'management': {
'ip': '192.168.20.100',
},
},
},
'roles': ["os-single-controller", "os-network", "os-compute"],
},
},
],
}
EXPECTED = {
'test1': {
'checkpoint_1': {
'host_states': {
'server1': {
'hostname': 'server1',
'progress': 0.0060000000000000001,
'state': 'INSTALLING'
},
},
'cluster_states': {
'cluster1': {
'clustername': 'cluster1',
'progress': 0.0060000000000000001,
'state': 'INSTALLING'
},
},
},
'checkpoint_2': {
'host_states': {
'server1': {
'hostname': 'server1',
'progress': 0.222,
'state': 'INSTALLING'
},
},
'cluster_states': {
'cluster1': {
'clustername': 'cluster1',
'progress': 0.222,
'state': 'INSTALLING'
},
},
},
'checkpoint_3': {
'host_states': {
'server1': {
'hostname': 'server1',
'progress': 0.59999999999999998,
'state': 'INSTALLING'
},
},
'cluster_states': {
'cluster1': {
'clustername': 'cluster1',
'progress': 0.59999999999999998,
'state': 'INSTALLING'
},
},
},
'checkpoint_4': {
'host_states': {
'server1': {
'hostname': 'server1',
'progress': 0.65134000000000003,
'state': 'INSTALLING'
},
},
'cluster_states': {
'cluster1': {
'clustername': 'cluster1',
'progress': 0.65134000000000003,
'state': 'INSTALLING'
},
},
},
'checkpoint_5': {
'host_states':{
'server1': {
'hostname': 'server1',
'progress': 1.0,
'state': 'READY'
},
},
'cluster_states': {
'cluster1': {
'clustername': 'cluster1',
'progress': 1.0,
'state': 'READY'
},
},
},
},
}

View File

@ -0,0 +1,223 @@
05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af
05:51:20,534 INFO : text mode forced from cmdline
05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return
05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting
05:51:20,656 DEBUG : Saving module ipv6
05:51:20,656 DEBUG : Saving module iscsi_ibft
05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs
05:51:20,656 DEBUG : Saving module pcspkr
05:51:20,656 DEBUG : Saving module edd
05:51:20,656 DEBUG : Saving module floppy
05:51:20,656 DEBUG : Saving module iscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi
05:51:20,656 DEBUG : Saving module scsi_transport_iscsi
05:51:20,656 DEBUG : Saving module squashfs
05:51:20,656 DEBUG : Saving module cramfs
05:51:20,656 DEBUG : probing buses
05:51:20,693 DEBUG : waiting for hardware to initialize
05:51:27,902 DEBUG : probing buses
05:51:27,925 DEBUG : waiting for hardware to initialize
05:51:47,187 INFO : getting kickstart file
05:51:47,196 INFO : eth0 has link, using it
05:51:47,208 INFO : doing kickstart... setting it up
05:51:47,208 DEBUG : activating device eth0
05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated
05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,611 INFO : setting up kickstart
05:51:52,611 INFO : kickstart forcing text mode
05:51:52,611 INFO : kickstartFromUrl
05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64
05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2
05:51:52,616 INFO : drive status is CDS_TRAY_OPEN
05:51:52,616 ERROR : Drive tray reports open when it should be closed
05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,636 DEBUG : going to set language to en_US.UTF-8
05:52:07,636 INFO : setting language to en_US.UTF-8
05:52:07,654 INFO : starting STEP_METHOD
05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog
05:52:07,654 DEBUG : skipMethodDialog is set
05:52:07,663 INFO : starting STEP_STAGE2
05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img
05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null)
05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory
05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img
05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error
05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img
05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,403 INFO : Loading SELinux policy
05:52:48,130 INFO : getting ready to spawn shell now
05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda
05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it
05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.
warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning)
05:52:54,868 INFO : Running kickstart %%pre script(s)
05:52:54,868 WARNING : '/bin/sh' specified as full path
05:52:56,966 INFO : All kickstart %%pre script(s) have been run
05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid
05:52:57,017 INFO : no initiator set
05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path
05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD!
05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp
05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64']
05:53:00,903 INFO : Display mode = t
05:53:00,903 INFO : Default encoding = utf-8
05:53:01,064 INFO : Detected 2016M of memory
05:53:01,064 INFO : Swap attempt of 4032M
05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid
05:53:01,399 INFO : no initiator set
05:53:05,059 INFO : setting installation environment hostname to server1
05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid.
05:53:05,276 INFO : Detected 2016M of memory
05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead.
05:53:05,277 INFO : Swap attempt of 3276M
05:53:05,453 WARNING : step installtype does not exist
05:53:05,454 WARNING : step confirminstall does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,457 WARNING : step complete does not exist
05:53:05,457 INFO : moving (1) to step setuptime
05:53:05,458 DEBUG : setuptime is a direct step
22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path
22:53:06,002 INFO : leaving (1) step setuptime
22:53:06,003 INFO : moving (1) to step autopartitionexecute
22:53:06,003 DEBUG : autopartitionexecute is a direct step
22:53:06,138 INFO : leaving (1) step autopartitionexecute
22:53:06,138 INFO : moving (1) to step storagedone
22:53:06,138 DEBUG : storagedone is a direct step
22:53:06,138 INFO : leaving (1) step storagedone
22:53:06,139 INFO : moving (1) to step enablefilesystems
22:53:06,139 DEBUG : enablefilesystems is a direct step
22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1
22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0
22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1
22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2
22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3
22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported
22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults
22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults
22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind
22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620
22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults
22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults
22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults
22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults
22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults
22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults
22:54:44,056 INFO : leaving (1) step enablefilesystems
22:54:44,057 INFO : moving (1) to step bootloadersetup
22:54:44,057 DEBUG : bootloadersetup is a direct step
22:54:44,061 INFO : leaving (1) step bootloadersetup
22:54:44,061 INFO : moving (1) to step reposetup
22:54:44,061 DEBUG : reposetup is a direct step
22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/
22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml
22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2
22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml
22:54:58,971 INFO : leaving (1) step reposetup
22:54:58,971 INFO : moving (1) to step basepkgsel
22:54:58,972 DEBUG : basepkgsel is a direct step
22:54:58,986 WARNING : not adding Base group
22:54:59,388 INFO : leaving (1) step basepkgsel
22:54:59,388 INFO : moving (1) to step postselection
22:54:59,388 DEBUG : postselection is a direct step
22:54:59,390 INFO : selected kernel package for kernel
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz
22:55:07,745 INFO : leaving (1) step postselection
22:55:07,745 INFO : moving (1) to step install

View File

@ -0,0 +1,222 @@
05:50:22,531 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8
05:50:22,531 INFO : text mode forced from cmdline
05:50:22,531 DEBUG : readNetInfo /tmp/s390net not found, early return
05:50:22,531 INFO : anaconda version 13.21.215 on x86_64 starting
05:50:22,649 DEBUG : Saving module ipv6
05:50:22,649 DEBUG : Saving module iscsi_ibft
05:50:22,649 DEBUG : Saving module iscsi_boot_sysfs
05:50:22,649 DEBUG : Saving module pcspkr
05:50:22,649 DEBUG : Saving module edd
05:50:22,649 DEBUG : Saving module floppy
05:50:22,649 DEBUG : Saving module iscsi_tcp
05:50:22,649 DEBUG : Saving module libiscsi_tcp
05:50:22,649 DEBUG : Saving module libiscsi
05:50:22,649 DEBUG : Saving module scsi_transport_iscsi
05:50:22,649 DEBUG : Saving module squashfs
05:50:22,649 DEBUG : Saving module cramfs
05:50:22,649 DEBUG : probing buses
05:50:22,673 DEBUG : waiting for hardware to initialize
05:50:28,619 DEBUG : probing buses
05:50:28,644 DEBUG : waiting for hardware to initialize
05:50:32,015 INFO : getting kickstart file
05:50:32,022 INFO : eth0 has link, using it
05:50:32,033 INFO : doing kickstart... setting it up
05:50:32,034 DEBUG : activating device eth0
05:50:40,048 INFO : wait_for_iface_activation (2502): device eth0 activated
05:50:40,048 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server2.1
05:50:40,049 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server2.1
05:50:40,134 INFO : setting up kickstart
05:50:40,134 INFO : kickstart forcing text mode
05:50:40,134 INFO : kickstartFromUrl
05:50:40,134 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64
05:50:40,135 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2
05:50:40,137 INFO : drive status is CDS_TRAY_OPEN
05:50:40,137 ERROR : Drive tray reports open when it should be closed
05:50:55,155 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:50:55,156 DEBUG : going to set language to en_US.UTF-8
05:50:55,156 INFO : setting language to en_US.UTF-8
05:50:55,169 INFO : starting STEP_METHOD
05:50:55,169 DEBUG : loaderData->method is set, adding skipMethodDialog
05:50:55,169 DEBUG : skipMethodDialog is set
05:50:55,176 INFO : starting STEP_STAGE2
05:50:55,176 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:50:55,176 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img
05:50:56,174 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null)
05:50:56,175 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory
05:50:56,175 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img
05:50:57,459 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error
05:50:57,459 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:51:46,964 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img
05:51:46,964 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:51:47,009 INFO : Loading SELinux policy
05:51:47,753 INFO : getting ready to spawn shell now
05:51:47,973 INFO : Running anaconda script /usr/bin/anaconda
05:51:52,842 INFO : CentOS Linux is the highest priority installclass, using it
05:51:52,887 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.
warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning)
05:51:52,888 INFO : Running kickstart %%pre script(s)
05:51:52,888 WARNING : '/bin/sh' specified as full path
05:51:54,265 INFO : All kickstart %%pre script(s) have been run
05:51:54,314 INFO : ISCSID is /usr/sbin/iscsid
05:51:54,314 INFO : no initiator set
05:51:54,416 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path
05:51:54,425 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD!
05:51:54,425 INFO : no /etc/zfcp.conf; not configuring zfcp
05:51:59,033 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage"
05:51:59,033 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64']
05:51:59,033 INFO : Display mode = t
05:51:59,034 INFO : Default encoding = utf-8
05:51:59,193 INFO : Detected 2016M of memory
05:51:59,193 INFO : Swap attempt of 4032M
05:51:59,528 INFO : ISCSID is /usr/sbin/iscsid
05:51:59,528 INFO : no initiator set
05:52:00,372 INFO : setting installation environment hostname to server2
05:52:00,415 WARNING : Timezone US/Pacific set in kickstart is not valid.
05:52:00,541 INFO : Detected 2016M of memory
05:52:00,541 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead.
05:52:00,541 INFO : Swap attempt of 3276M
05:52:00,698 WARNING : step installtype does not exist
05:52:00,699 WARNING : step confirminstall does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,702 INFO : moving (1) to step setuptime
05:52:00,702 DEBUG : setuptime is a direct step
22:52:00,703 WARNING : '/usr/sbin/hwclock' specified as full path
22:52:02,003 INFO : leaving (1) step setuptime
22:52:02,003 INFO : moving (1) to step autopartitionexecute
22:52:02,003 DEBUG : autopartitionexecute is a direct step
22:52:02,141 INFO : leaving (1) step autopartitionexecute
22:52:02,141 INFO : moving (1) to step storagedone
22:52:02,141 DEBUG : storagedone is a direct step
22:52:02,142 INFO : leaving (1) step storagedone
22:52:02,142 INFO : moving (1) to step enablefilesystems
22:52:02,142 DEBUG : enablefilesystems is a direct step
22:52:08,928 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1
22:52:12,407 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:52:25,536 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0
22:52:30,102 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1
22:52:35,181 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2
22:52:40,809 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3
22:52:44,576 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported
22:52:44,576 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-rootvol on /mnt/sysimage as ext3 with options defaults
22:52:45,082 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults
22:52:45,230 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind
22:52:45,240 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620
22:52:45,247 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults
22:52:45,333 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-homevol on /mnt/sysimage/home as ext3 with options defaults
22:52:45,482 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:52:45,483 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults
22:52:45,487 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:52:45,534 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults
22:52:45,571 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults
22:52:45,795 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-varvol on /mnt/sysimage/var as ext3 with options defaults
22:52:45,955 INFO : leaving (1) step enablefilesystems
22:52:45,955 INFO : moving (1) to step bootloadersetup
22:52:45,956 DEBUG : bootloadersetup is a direct step
22:52:45,960 INFO : leaving (1) step bootloadersetup
22:52:45,960 INFO : moving (1) to step reposetup
22:52:45,960 DEBUG : reposetup is a direct step
22:52:47,076 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
22:52:47,077 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/
22:52:47,296 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml
22:52:47,358 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2
22:52:47,499 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml
22:52:47,629 INFO : leaving (1) step reposetup
22:52:47,629 INFO : moving (1) to step basepkgsel
22:52:47,629 DEBUG : basepkgsel is a direct step
22:52:47,645 WARNING : not adding Base group
22:52:48,052 INFO : leaving (1) step basepkgsel
22:52:48,053 INFO : moving (1) to step postselection
22:52:48,053 DEBUG : postselection is a direct step
22:52:48,056 INFO : selected kernel package for kernel
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz
22:52:53,656 INFO : leaving (1) step postselection
22:52:53,657 INFO : moving (1) to step install

View File

@ -0,0 +1,286 @@
05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af
05:51:20,534 INFO : text mode forced from cmdline
05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return
05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting
05:51:20,656 DEBUG : Saving module ipv6
05:51:20,656 DEBUG : Saving module iscsi_ibft
05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs
05:51:20,656 DEBUG : Saving module pcspkr
05:51:20,656 DEBUG : Saving module edd
05:51:20,656 DEBUG : Saving module floppy
05:51:20,656 DEBUG : Saving module iscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi
05:51:20,656 DEBUG : Saving module scsi_transport_iscsi
05:51:20,656 DEBUG : Saving module squashfs
05:51:20,656 DEBUG : Saving module cramfs
05:51:20,656 DEBUG : probing buses
05:51:20,693 DEBUG : waiting for hardware to initialize
05:51:27,902 DEBUG : probing buses
05:51:27,925 DEBUG : waiting for hardware to initialize
05:51:47,187 INFO : getting kickstart file
05:51:47,196 INFO : eth0 has link, using it
05:51:47,208 INFO : doing kickstart... setting it up
05:51:47,208 DEBUG : activating device eth0
05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated
05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,611 INFO : setting up kickstart
05:51:52,611 INFO : kickstart forcing text mode
05:51:52,611 INFO : kickstartFromUrl
05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64
05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2
05:51:52,616 INFO : drive status is CDS_TRAY_OPEN
05:51:52,616 ERROR : Drive tray reports open when it should be closed
05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,636 DEBUG : going to set language to en_US.UTF-8
05:52:07,636 INFO : setting language to en_US.UTF-8
05:52:07,654 INFO : starting STEP_METHOD
05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog
05:52:07,654 DEBUG : skipMethodDialog is set
05:52:07,663 INFO : starting STEP_STAGE2
05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img
05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null)
05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory
05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img
05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error
05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img
05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,403 INFO : Loading SELinux policy
05:52:48,130 INFO : getting ready to spawn shell now
05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda
05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it
05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.
warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning)
05:52:54,868 INFO : Running kickstart %%pre script(s)
05:52:54,868 WARNING : '/bin/sh' specified as full path
05:52:56,966 INFO : All kickstart %%pre script(s) have been run
05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid
05:52:57,017 INFO : no initiator set
05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path
05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD!
05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp
05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64']
05:53:00,903 INFO : Display mode = t
05:53:00,903 INFO : Default encoding = utf-8
05:53:01,064 INFO : Detected 2016M of memory
05:53:01,064 INFO : Swap attempt of 4032M
05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid
05:53:01,399 INFO : no initiator set
05:53:05,059 INFO : setting installation environment hostname to server1
05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid.
05:53:05,276 INFO : Detected 2016M of memory
05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead.
05:53:05,277 INFO : Swap attempt of 3276M
05:53:05,453 WARNING : step installtype does not exist
05:53:05,454 WARNING : step confirminstall does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,457 WARNING : step complete does not exist
05:53:05,457 INFO : moving (1) to step setuptime
05:53:05,458 DEBUG : setuptime is a direct step
22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path
22:53:06,002 INFO : leaving (1) step setuptime
22:53:06,003 INFO : moving (1) to step autopartitionexecute
22:53:06,003 DEBUG : autopartitionexecute is a direct step
22:53:06,138 INFO : leaving (1) step autopartitionexecute
22:53:06,138 INFO : moving (1) to step storagedone
22:53:06,138 DEBUG : storagedone is a direct step
22:53:06,138 INFO : leaving (1) step storagedone
22:53:06,139 INFO : moving (1) to step enablefilesystems
22:53:06,139 DEBUG : enablefilesystems is a direct step
22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1
22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0
22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1
22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2
22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3
22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported
22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults
22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults
22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind
22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620
22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults
22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults
22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults
22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults
22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults
22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults
22:54:44,056 INFO : leaving (1) step enablefilesystems
22:54:44,057 INFO : moving (1) to step bootloadersetup
22:54:44,057 DEBUG : bootloadersetup is a direct step
22:54:44,061 INFO : leaving (1) step bootloadersetup
22:54:44,061 INFO : moving (1) to step reposetup
22:54:44,061 DEBUG : reposetup is a direct step
22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/
22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml
22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2
22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml
22:54:58,971 INFO : leaving (1) step reposetup
22:54:58,971 INFO : moving (1) to step basepkgsel
22:54:58,972 DEBUG : basepkgsel is a direct step
22:54:58,986 WARNING : not adding Base group
22:54:59,388 INFO : leaving (1) step basepkgsel
22:54:59,388 INFO : moving (1) to step postselection
22:54:59,388 DEBUG : postselection is a direct step
22:54:59,390 INFO : selected kernel package for kernel
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz
22:55:07,745 INFO : leaving (1) step postselection
22:55:07,745 INFO : moving (1) to step install
22:55:07,748 INFO : leaving (1) step install
22:55:07,748 INFO : moving (1) to step preinstallconfig
22:55:07,748 DEBUG : preinstallconfig is a direct step
22:55:08,087 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults
22:55:08,091 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults
22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:55:08,122 INFO : leaving (1) step preinstallconfig
22:55:08,122 INFO : moving (1) to step installpackages
22:55:08,122 DEBUG : installpackages is a direct step
22:55:08,122 INFO : Preparing to install packages
23:17:06,152 INFO : leaving (1) step installpackages
23:17:06,153 INFO : moving (1) to step postinstallconfig
23:17:06,153 DEBUG : postinstallconfig is a direct step
23:17:06,162 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64
23:17:06,181 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo
23:17:06,183 INFO : leaving (1) step postinstallconfig
23:17:06,184 INFO : moving (1) to step writeconfig
23:17:06,184 DEBUG : writeconfig is a direct step
23:17:06,184 INFO : Writing main configuration
23:17:06,219 WARNING : '/usr/sbin/authconfig' specified as full path
23:17:11,643 WARNING : '/usr/sbin/lokkit' specified as full path
23:17:11,703 WARNING : '/usr/sbin/lokkit' specified as full path
23:17:11,885 INFO : removing libuser.conf at /tmp/libuser.WMDW9M
23:17:11,885 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
23:17:12,722 INFO : leaving (1) step writeconfig
23:17:12,722 INFO : moving (1) to step firstboot
23:17:12,723 DEBUG : firstboot is a direct step
23:17:12,723 INFO : leaving (1) step firstboot
23:17:12,723 INFO : moving (1) to step instbootloader
23:17:12,724 DEBUG : instbootloader is a direct step
23:17:14,664 WARNING : '/sbin/grub-install' specified as full path
23:17:15,006 WARNING : '/sbin/grub' specified as full path
23:17:16,039 INFO : leaving (1) step instbootloader
23:17:16,040 INFO : moving (1) to step reipl
23:17:16,040 DEBUG : reipl is a direct step
23:17:16,040 INFO : leaving (1) step reipl
23:17:16,040 INFO : moving (1) to step writeksconfig
23:17:16,040 DEBUG : writeksconfig is a direct step
23:17:16,041 INFO : Writing autokickstart file
23:17:16,070 INFO : leaving (1) step writeksconfig
23:17:16,071 INFO : moving (1) to step setfilecon
23:17:16,071 DEBUG : setfilecon is a direct step
23:17:16,071 INFO : setting SELinux contexts for anaconda created files
23:17:17,822 INFO : leaving (1) step setfilecon
23:17:17,822 INFO : moving (1) to step copylogs
23:17:17,822 DEBUG : copylogs is a direct step
23:17:17,822 INFO : Copying anaconda logs
23:17:17,825 INFO : leaving (1) step copylogs
23:17:17,825 INFO : moving (1) to step methodcomplete
23:17:17,825 DEBUG : methodcomplete is a direct step
23:17:17,825 INFO : leaving (1) step methodcomplete
23:17:17,826 INFO : moving (1) to step postscripts
23:17:17,826 DEBUG : postscripts is a direct step
23:17:17,826 INFO : Running kickstart %%post script(s)
23:17:17,858 WARNING : '/bin/sh' specified as full path
23:17:21,002 INFO : All kickstart %%post script(s) have been run
23:17:21,002 INFO : leaving (1) step postscripts
23:17:21,002 INFO : moving (1) to step dopostaction
23:17:21,002 DEBUG : dopostaction is a direct step
23:17:21,003 INFO : leaving (1) step dopostaction

View File

@ -0,0 +1,212 @@
Installing libgcc-4.4.7-4.el6.x86_64
warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Installing setup-2.8.14-20.el6_4.1.noarch
Installing filesystem-2.4.30-3.el6.x86_64
Installing basesystem-10.0-4.el6.noarch
Installing ncurses-base-5.7-3.20090208.el6.x86_64
Installing kernel-firmware-2.6.32-431.el6.noarch
Installing tzdata-2013g-1.el6.noarch
Installing nss-softokn-freebl-3.14.3-9.el6.x86_64
Installing glibc-common-2.12-1.132.el6.x86_64
Installing glibc-2.12-1.132.el6.x86_64
Installing ncurses-libs-5.7-3.20090208.el6.x86_64
Installing bash-4.1.2-15.el6_4.x86_64
Installing libattr-2.4.44-7.el6.x86_64
Installing libcap-2.16-5.5.el6.x86_64
Installing zlib-1.2.3-29.el6.x86_64
Installing info-4.13a-8.el6.x86_64
Installing popt-1.13-7.el6.x86_64
Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64
Installing audit-libs-2.2-2.el6.x86_64
Installing libcom_err-1.41.12-18.el6.x86_64
Installing libacl-2.2.49-6.el6.x86_64
Installing db4-4.7.25-18.el6_4.x86_64
Installing nspr-4.10.0-1.el6.x86_64
Installing nss-util-3.15.1-3.el6.x86_64
Installing readline-6.0-4.el6.x86_64
Installing libsepol-2.0.41-4.el6.x86_64
Installing libselinux-2.0.94-5.3.el6_4.1.x86_64
Installing shadow-utils-4.1.4.2-13.el6.x86_64
Installing sed-4.2.1-10.el6.x86_64
Installing bzip2-libs-1.0.5-7.el6_0.x86_64
Installing libuuid-2.17.2-12.14.el6.x86_64
Installing libstdc++-4.4.7-4.el6.x86_64
Installing libblkid-2.17.2-12.14.el6.x86_64
Installing gawk-3.1.7-10.el6.x86_64
Installing file-libs-5.04-15.el6.x86_64
Installing libgpg-error-1.7-4.el6.x86_64
Installing dbus-libs-1.2.24-7.el6_3.x86_64
Installing libudev-147-2.51.el6.x86_64
Installing pcre-7.8-6.el6.x86_64
Installing grep-2.6.3-4.el6.x86_64
Installing lua-5.1.4-4.1.el6.x86_64
Installing sqlite-3.6.20-1.el6.x86_64
Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64
Installing libidn-1.18-2.el6.x86_64
Installing expat-2.0.1-11.el6_2.x86_64
Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64
Installing elfutils-libelf-0.152-1.el6.x86_64
Installing libgcrypt-1.4.5-11.el6_4.x86_64
Installing bzip2-1.0.5-7.el6_0.x86_64
Installing findutils-4.4.2-6.el6.x86_64
Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64
Installing checkpolicy-2.0.22-1.el6.x86_64
Installing cpio-2.10-11.el6_3.x86_64
Installing which-2.19-6.el6.x86_64
Installing libxml2-2.7.6-14.el6.x86_64
Installing libedit-2.11-4.20080712cvs.1.el6.x86_64
Installing pth-2.0.7-9.3.el6.x86_64
Installing tcp_wrappers-libs-7.6-57.el6.x86_64
Installing sysvinit-tools-2.87-5.dsf.el6.x86_64
Installing libtasn1-2.3-3.el6_2.1.x86_64
Installing p11-kit-0.18.5-2.el6.x86_64
Installing p11-kit-trust-0.18.5-2.el6.x86_64
Installing ca-certificates-2013.1.94-65.0.el6.noarch
Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64
Installing nss-softokn-3.14.3-9.el6.x86_64
Installing libnih-1.0.1-7.el6.x86_64
Installing upstart-0.6.5-12.el6_4.1.x86_64
Installing file-5.04-15.el6.x86_64
Installing gmp-4.3.1-7.el6_2.2.x86_64
Installing libusb-0.1.12-23.el6.x86_64
Installing MAKEDEV-3.24-6.el6.x86_64
Installing libutempter-1.1.5-4.1.el6.x86_64
Installing psmisc-22.6-15.el6_0.1.x86_64
Installing net-tools-1.60-110.el6_2.x86_64
Installing vim-minimal-7.2.411-1.8.el6.x86_64
Installing tar-1.23-11.el6.x86_64
Installing procps-3.2.8-25.el6.x86_64
Installing db4-utils-4.7.25-18.el6_4.x86_64
Installing e2fsprogs-libs-1.41.12-18.el6.x86_64
Installing libss-1.41.12-18.el6.x86_64
Installing pinentry-0.7.6-6.el6.x86_64
Installing binutils-2.20.51.0.2-5.36.el6.x86_64
Installing m4-1.4.13-5.el6.x86_64
Installing diffutils-2.8.1-28.el6.x86_64
Installing make-3.81-20.el6.x86_64
Installing dash-0.5.5.1-4.el6.x86_64
Installing ncurses-5.7-3.20090208.el6.x86_64
Installing groff-1.18.1.4-21.el6.x86_64
Installing less-436-10.el6.x86_64
Installing coreutils-libs-8.4-31.el6.x86_64
Installing gzip-1.3.12-19.el6_4.x86_64
Installing cracklib-2.8.16-4.el6.x86_64
Installing cracklib-dicts-2.8.16-4.el6.x86_64
Installing coreutils-8.4-31.el6.x86_64
Installing pam-1.1.1-17.el6.x86_64
Installing module-init-tools-3.9-21.el6_4.x86_64
Installing hwdata-0.233-9.1.el6.noarch
Installing redhat-logos-60.0.14-12.el6.centos.noarch
Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64
Installing libpciaccess-0.13.1-2.el6.x86_64
Installing nss-3.15.1-15.el6.x86_64
Installing nss-sysinit-3.15.1-15.el6.x86_64
Installing nss-tools-3.15.1-15.el6.x86_64
Installing openldap-2.4.23-32.el6_4.1.x86_64
Installing logrotate-3.7.8-17.el6.x86_64
Installing gdbm-1.8.0-36.el6.x86_64
Installing mingetty-1.08-5.el6.x86_64
Installing keyutils-libs-1.4-4.el6.x86_64
Installing krb5-libs-1.10.3-10.el6_4.6.x86_64
Installing openssl-1.0.1e-15.el6.x86_64
Installing libssh2-1.4.2-1.el6.x86_64
Installing libcurl-7.19.7-37.el6_4.x86_64
Installing gnupg2-2.0.14-6.el6_4.x86_64
Installing gpgme-1.1.8-3.el6.x86_64
Installing curl-7.19.7-37.el6_4.x86_64
Installing rpm-libs-4.8.0-37.el6.x86_64
Installing rpm-4.8.0-37.el6.x86_64
Installing fipscheck-lib-1.2.0-7.el6.x86_64
Installing fipscheck-1.2.0-7.el6.x86_64
Installing mysql-libs-5.1.71-1.el6.x86_64
Installing ethtool-3.5-1.el6.x86_64
Installing pciutils-libs-3.1.10-2.el6.x86_64
Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64
Installing libcap-ng-0.6.4-3.el6_0.1.x86_64
Installing libffi-3.0.5-3.2.el6.x86_64
Installing python-2.6.6-51.el6.x86_64
Installing python-libs-2.6.6-51.el6.x86_64
Installing python-pycurl-7.19.0-8.el6.x86_64
Installing python-urlgrabber-3.9.1-9.el6.noarch
Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64
Installing rpm-python-4.8.0-37.el6.x86_64
Installing python-iniparse-0.3.1-2.1.el6.noarch
Installing slang-2.2.1-1.el6.x86_64
Installing newt-0.52.11-3.el6.x86_64
Installing newt-python-0.52.11-3.el6.x86_64
Installing ustr-1.0.4-9.1.el6.x86_64
Installing libsemanage-2.0.43-4.2.el6.x86_64
Installing libaio-0.3.107-10.el6.x86_64
Installing pkgconfig-0.23-9.1.el6.x86_64
Installing gamin-0.1.10-9.el6.x86_64
Installing glib2-2.26.1-3.el6.x86_64
Installing shared-mime-info-0.70-4.el6.x86_64
Installing libuser-0.56.13-5.el6.x86_64
Installing grubby-7.0.15-5.el6.x86_64
Installing yum-metadata-parser-1.1.2-16.el6.x86_64
Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch
Installing yum-3.2.29-40.el6.centos.noarch
Installing dbus-glib-0.86-6.el6.x86_64
Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64
Installing centos-release-6-5.el6.centos.11.1.x86_64
Installing policycoreutils-2.0.83-19.39.el6.x86_64
Installing iptables-1.4.7-11.el6.x86_64
Installing iproute-2.6.32-31.el6.x86_64
Installing iputils-20071127-17.el6_4.2.x86_64
Installing util-linux-ng-2.17.2-12.14.el6.x86_64
Installing initscripts-9.03.40-2.el6.centos.x86_64
Installing udev-147-2.51.el6.x86_64
Installing device-mapper-libs-1.02.79-8.el6.x86_64
Installing device-mapper-1.02.79-8.el6.x86_64
Installing device-mapper-event-libs-1.02.79-8.el6.x86_64
Installing openssh-5.3p1-94.el6.x86_64
Installing device-mapper-event-1.02.79-8.el6.x86_64
Installing lvm2-libs-2.02.100-8.el6.x86_64
Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64
Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64
Installing kpartx-0.4.9-72.el6.x86_64
Installing libdrm-2.4.45-2.el6.x86_64
Installing plymouth-0.8.3-27.el6.centos.x86_64
Installing rsyslog-5.8.10-8.el6.x86_64
Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64
Installing postfix-2.6.6-2.2.el6_1.x86_64
Installing cronie-anacron-1.4.4-12.el6.x86_64
Installing cronie-1.4.4-12.el6.x86_64
Installing crontabs-1.10-33.el6.noarch
Installing ntpdate-4.2.6p5-1.el6.centos.x86_64
Installing iptables-ipv6-1.4.7-11.el6.x86_64
Installing selinux-policy-3.7.19-231.el6.noarch
Installing kbd-misc-1.15-11.el6.noarch
Installing kbd-1.15-11.el6.x86_64
Installing dracut-004-335.el6.noarch
Installing dracut-kernel-004-335.el6.noarch
Installing kernel-2.6.32-431.el6.x86_64
Installing fuse-2.8.3-4.el6.x86_64
Installing selinux-policy-targeted-3.7.19-231.el6.noarch
Installing system-config-firewall-base-1.2.27-5.el6.noarch
Installing ntp-4.2.6p5-1.el6.centos.x86_64
Installing device-mapper-multipath-0.4.9-72.el6.x86_64
Installing cryptsetup-luks-1.2.0-7.el6.x86_64
Installing lvm2-2.02.100-8.el6.x86_64
Installing openssh-clients-5.3p1-94.el6.x86_64
Installing openssh-server-5.3p1-94.el6.x86_64
Installing mdadm-3.2.6-7.el6.x86_64
Installing b43-openfwwf-5.2-4.el6.noarch
Installing dhclient-4.1.1-38.P1.el6.centos.x86_64
Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64
Installing passwd-0.77-4.el6_2.2.x86_64
Installing authconfig-6.1.12-13.el6.x86_64
Installing grub-0.97-83.el6.x86_64
Installing efibootmgr-0.5.4-11.el6.x86_64
Installing wget-1.12-1.8.el6.x86_64
Installing sudo-1.8.6p3-12.el6.x86_64
Installing audit-2.2-2.el6.x86_64
Installing e2fsprogs-1.41.12-18.el6.x86_64
Installing xfsprogs-3.1.1-14.el6.x86_64
Installing acl-2.2.49-6.el6.x86_64
Installing attr-2.4.44-7.el6.x86_64
Installing chef-11.8.0-1.el6.x86_64
warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
Installing bridge-utils-1.2-10.el6.x86_64
Installing rootfiles-8.1-6.1.el6.noarch
*** FINISHED INSTALLING PACKAGES ***

View File

@ -0,0 +1,280 @@
05:50:22,531 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8
05:50:22,531 INFO : text mode forced from cmdline
05:50:22,531 DEBUG : readNetInfo /tmp/s390net not found, early return
05:50:22,531 INFO : anaconda version 13.21.215 on x86_64 starting
05:50:22,649 DEBUG : Saving module ipv6
05:50:22,649 DEBUG : Saving module iscsi_ibft
05:50:22,649 DEBUG : Saving module iscsi_boot_sysfs
05:50:22,649 DEBUG : Saving module pcspkr
05:50:22,649 DEBUG : Saving module edd
05:50:22,649 DEBUG : Saving module floppy
05:50:22,649 DEBUG : Saving module iscsi_tcp
05:50:22,649 DEBUG : Saving module libiscsi_tcp
05:50:22,649 DEBUG : Saving module libiscsi
05:50:22,649 DEBUG : Saving module scsi_transport_iscsi
05:50:22,649 DEBUG : Saving module squashfs
05:50:22,649 DEBUG : Saving module cramfs
05:50:22,649 DEBUG : probing buses
05:50:22,673 DEBUG : waiting for hardware to initialize
05:50:28,619 DEBUG : probing buses
05:50:28,644 DEBUG : waiting for hardware to initialize
05:50:32,015 INFO : getting kickstart file
05:50:32,022 INFO : eth0 has link, using it
05:50:32,033 INFO : doing kickstart... setting it up
05:50:32,034 DEBUG : activating device eth0
05:50:40,048 INFO : wait_for_iface_activation (2502): device eth0 activated
05:50:40,048 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server2.1
05:50:40,049 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server2.1
05:50:40,134 INFO : setting up kickstart
05:50:40,134 INFO : kickstart forcing text mode
05:50:40,134 INFO : kickstartFromUrl
05:50:40,134 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64
05:50:40,135 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2
05:50:40,137 INFO : drive status is CDS_TRAY_OPEN
05:50:40,137 ERROR : Drive tray reports open when it should be closed
05:50:55,155 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:50:55,156 DEBUG : going to set language to en_US.UTF-8
05:50:55,156 INFO : setting language to en_US.UTF-8
05:50:55,169 INFO : starting STEP_METHOD
05:50:55,169 DEBUG : loaderData->method is set, adding skipMethodDialog
05:50:55,169 DEBUG : skipMethodDialog is set
05:50:55,176 INFO : starting STEP_STAGE2
05:50:55,176 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:50:55,176 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img
05:50:56,174 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null)
05:50:56,175 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory
05:50:56,175 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img
05:50:57,459 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error
05:50:57,459 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:51:46,964 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img
05:51:46,964 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:51:47,009 INFO : Loading SELinux policy
05:51:47,753 INFO : getting ready to spawn shell now
05:51:47,973 INFO : Running anaconda script /usr/bin/anaconda
05:51:52,842 INFO : CentOS Linux is the highest priority installclass, using it
05:51:52,887 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.
warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning)
05:51:52,888 INFO : Running kickstart %%pre script(s)
05:51:52,888 WARNING : '/bin/sh' specified as full path
05:51:54,265 INFO : All kickstart %%pre script(s) have been run
05:51:54,314 INFO : ISCSID is /usr/sbin/iscsid
05:51:54,314 INFO : no initiator set
05:51:54,416 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path
05:51:54,425 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD!
05:51:54,425 INFO : no /etc/zfcp.conf; not configuring zfcp
05:51:59,033 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage"
05:51:59,033 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64']
05:51:59,033 INFO : Display mode = t
05:51:59,034 INFO : Default encoding = utf-8
05:51:59,193 INFO : Detected 2016M of memory
05:51:59,193 INFO : Swap attempt of 4032M
05:51:59,528 INFO : ISCSID is /usr/sbin/iscsid
05:51:59,528 INFO : no initiator set
05:52:00,372 INFO : setting installation environment hostname to server2
05:52:00,415 WARNING : Timezone US/Pacific set in kickstart is not valid.
05:52:00,541 INFO : Detected 2016M of memory
05:52:00,541 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead.
05:52:00,541 INFO : Swap attempt of 3276M
05:52:00,698 WARNING : step installtype does not exist
05:52:00,699 WARNING : step confirminstall does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,702 INFO : moving (1) to step setuptime
05:52:00,702 DEBUG : setuptime is a direct step
22:52:00,703 WARNING : '/usr/sbin/hwclock' specified as full path
22:52:02,003 INFO : leaving (1) step setuptime
22:52:02,003 INFO : moving (1) to step autopartitionexecute
22:52:02,003 DEBUG : autopartitionexecute is a direct step
22:52:02,141 INFO : leaving (1) step autopartitionexecute
22:52:02,141 INFO : moving (1) to step storagedone
22:52:02,141 DEBUG : storagedone is a direct step
22:52:02,142 INFO : leaving (1) step storagedone
22:52:02,142 INFO : moving (1) to step enablefilesystems
22:52:02,142 DEBUG : enablefilesystems is a direct step
22:52:08,928 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1
22:52:12,407 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:52:25,536 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0
22:52:30,102 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1
22:52:35,181 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2
22:52:40,809 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3
22:52:44,576 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported
22:52:44,576 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-rootvol on /mnt/sysimage as ext3 with options defaults
22:52:45,082 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults
22:52:45,230 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind
22:52:45,240 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620
22:52:45,247 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults
22:52:45,333 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-homevol on /mnt/sysimage/home as ext3 with options defaults
22:52:45,482 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:52:45,483 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults
22:52:45,487 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:52:45,534 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults
22:52:45,571 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults
22:52:45,795 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-varvol on /mnt/sysimage/var as ext3 with options defaults
22:52:45,955 INFO : leaving (1) step enablefilesystems
22:52:45,955 INFO : moving (1) to step bootloadersetup
22:52:45,956 DEBUG : bootloadersetup is a direct step
22:52:45,960 INFO : leaving (1) step bootloadersetup
22:52:45,960 INFO : moving (1) to step reposetup
22:52:45,960 DEBUG : reposetup is a direct step
22:52:47,076 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
22:52:47,077 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/
22:52:47,296 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml
22:52:47,358 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2
22:52:47,499 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml
22:52:47,629 INFO : leaving (1) step reposetup
22:52:47,629 INFO : moving (1) to step basepkgsel
22:52:47,629 DEBUG : basepkgsel is a direct step
22:52:47,645 WARNING : not adding Base group
22:52:48,052 INFO : leaving (1) step basepkgsel
22:52:48,053 INFO : moving (1) to step postselection
22:52:48,053 DEBUG : postselection is a direct step
22:52:48,056 INFO : selected kernel package for kernel
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz
22:52:53,656 INFO : leaving (1) step postselection
22:52:53,657 INFO : moving (1) to step install
22:52:53,660 INFO : leaving (1) step install
22:52:53,660 INFO : moving (1) to step preinstallconfig
22:52:53,660 DEBUG : preinstallconfig is a direct step
22:52:54,102 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults
22:52:54,107 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults
22:52:54,117 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:52:54,117 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:52:54,130 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:52:54,130 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:52:54,134 INFO : leaving (1) step preinstallconfig
22:52:54,134 INFO : moving (1) to step installpackages
22:52:54,134 DEBUG : installpackages is a direct step
22:52:54,134 INFO : Preparing to install packages
23:16:26,925 INFO : leaving (1) step installpackages
23:16:26,926 INFO : moving (1) to step postinstallconfig
23:16:26,926 DEBUG : postinstallconfig is a direct step
23:16:26,934 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64
23:16:26,949 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo
23:16:26,953 INFO : leaving (1) step postinstallconfig
23:16:26,953 INFO : moving (1) to step writeconfig
23:16:26,953 DEBUG : writeconfig is a direct step
23:16:26,953 INFO : Writing main configuration
23:16:26,958 WARNING : '/usr/sbin/authconfig' specified as full path
23:16:30,473 WARNING : '/usr/sbin/lokkit' specified as full path
23:16:30,530 WARNING : '/usr/sbin/lokkit' specified as full path
23:16:30,632 INFO : removing libuser.conf at /tmp/libuser.KyLOeb
23:16:30,633 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage"
23:16:31,956 INFO : leaving (1) step writeconfig
23:16:31,956 INFO : moving (1) to step firstboot
23:16:31,957 DEBUG : firstboot is a direct step
23:16:31,957 INFO : leaving (1) step firstboot
23:16:31,957 INFO : moving (1) to step instbootloader
23:16:31,957 DEBUG : instbootloader is a direct step
23:16:33,920 WARNING : '/sbin/grub-install' specified as full path
23:16:34,226 WARNING : '/sbin/grub' specified as full path
23:16:35,092 INFO : leaving (1) step instbootloader
23:16:35,092 INFO : moving (1) to step reipl
23:16:35,092 DEBUG : reipl is a direct step
23:16:35,093 INFO : leaving (1) step reipl
23:16:35,093 INFO : moving (1) to step writeksconfig
23:16:35,093 DEBUG : writeksconfig is a direct step
23:16:35,093 INFO : Writing autokickstart file
23:16:35,124 INFO : leaving (1) step writeksconfig
23:16:35,124 INFO : moving (1) to step setfilecon
23:16:35,125 DEBUG : setfilecon is a direct step
23:16:35,125 INFO : setting SELinux contexts for anaconda created files
23:16:36,828 INFO : leaving (1) step setfilecon
23:16:36,829 INFO : moving (1) to step copylogs
23:16:36,829 DEBUG : copylogs is a direct step
23:16:36,829 INFO : Copying anaconda logs
23:16:36,831 INFO : leaving (1) step copylogs
23:16:36,831 INFO : moving (1) to step methodcomplete
23:16:36,832 DEBUG : methodcomplete is a direct step
23:16:36,832 INFO : leaving (1) step methodcomplete
23:16:36,832 INFO : moving (1) to step postscripts
23:16:36,832 DEBUG : postscripts is a direct step
23:16:36,832 INFO : Running kickstart %%post script(s)
23:16:36,872 WARNING : '/bin/sh' specified as full path

View File

@ -0,0 +1,212 @@
Installing libgcc-4.4.7-4.el6.x86_64
warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Installing setup-2.8.14-20.el6_4.1.noarch
Installing filesystem-2.4.30-3.el6.x86_64
Installing basesystem-10.0-4.el6.noarch
Installing ncurses-base-5.7-3.20090208.el6.x86_64
Installing kernel-firmware-2.6.32-431.el6.noarch
Installing tzdata-2013g-1.el6.noarch
Installing nss-softokn-freebl-3.14.3-9.el6.x86_64
Installing glibc-common-2.12-1.132.el6.x86_64
Installing glibc-2.12-1.132.el6.x86_64
Installing ncurses-libs-5.7-3.20090208.el6.x86_64
Installing bash-4.1.2-15.el6_4.x86_64
Installing libattr-2.4.44-7.el6.x86_64
Installing libcap-2.16-5.5.el6.x86_64
Installing zlib-1.2.3-29.el6.x86_64
Installing info-4.13a-8.el6.x86_64
Installing popt-1.13-7.el6.x86_64
Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64
Installing audit-libs-2.2-2.el6.x86_64
Installing libcom_err-1.41.12-18.el6.x86_64
Installing libacl-2.2.49-6.el6.x86_64
Installing db4-4.7.25-18.el6_4.x86_64
Installing nspr-4.10.0-1.el6.x86_64
Installing nss-util-3.15.1-3.el6.x86_64
Installing readline-6.0-4.el6.x86_64
Installing libsepol-2.0.41-4.el6.x86_64
Installing libselinux-2.0.94-5.3.el6_4.1.x86_64
Installing shadow-utils-4.1.4.2-13.el6.x86_64
Installing sed-4.2.1-10.el6.x86_64
Installing bzip2-libs-1.0.5-7.el6_0.x86_64
Installing libuuid-2.17.2-12.14.el6.x86_64
Installing libstdc++-4.4.7-4.el6.x86_64
Installing libblkid-2.17.2-12.14.el6.x86_64
Installing gawk-3.1.7-10.el6.x86_64
Installing file-libs-5.04-15.el6.x86_64
Installing libgpg-error-1.7-4.el6.x86_64
Installing dbus-libs-1.2.24-7.el6_3.x86_64
Installing libudev-147-2.51.el6.x86_64
Installing pcre-7.8-6.el6.x86_64
Installing grep-2.6.3-4.el6.x86_64
Installing lua-5.1.4-4.1.el6.x86_64
Installing sqlite-3.6.20-1.el6.x86_64
Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64
Installing libidn-1.18-2.el6.x86_64
Installing expat-2.0.1-11.el6_2.x86_64
Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64
Installing elfutils-libelf-0.152-1.el6.x86_64
Installing libgcrypt-1.4.5-11.el6_4.x86_64
Installing bzip2-1.0.5-7.el6_0.x86_64
Installing findutils-4.4.2-6.el6.x86_64
Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64
Installing checkpolicy-2.0.22-1.el6.x86_64
Installing cpio-2.10-11.el6_3.x86_64
Installing which-2.19-6.el6.x86_64
Installing libxml2-2.7.6-14.el6.x86_64
Installing libedit-2.11-4.20080712cvs.1.el6.x86_64
Installing pth-2.0.7-9.3.el6.x86_64
Installing tcp_wrappers-libs-7.6-57.el6.x86_64
Installing sysvinit-tools-2.87-5.dsf.el6.x86_64
Installing libtasn1-2.3-3.el6_2.1.x86_64
Installing p11-kit-0.18.5-2.el6.x86_64
Installing p11-kit-trust-0.18.5-2.el6.x86_64
Installing ca-certificates-2013.1.94-65.0.el6.noarch
Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64
Installing nss-softokn-3.14.3-9.el6.x86_64
Installing libnih-1.0.1-7.el6.x86_64
Installing upstart-0.6.5-12.el6_4.1.x86_64
Installing file-5.04-15.el6.x86_64
Installing gmp-4.3.1-7.el6_2.2.x86_64
Installing libusb-0.1.12-23.el6.x86_64
Installing MAKEDEV-3.24-6.el6.x86_64
Installing libutempter-1.1.5-4.1.el6.x86_64
Installing psmisc-22.6-15.el6_0.1.x86_64
Installing net-tools-1.60-110.el6_2.x86_64
Installing vim-minimal-7.2.411-1.8.el6.x86_64
Installing tar-1.23-11.el6.x86_64
Installing procps-3.2.8-25.el6.x86_64
Installing db4-utils-4.7.25-18.el6_4.x86_64
Installing e2fsprogs-libs-1.41.12-18.el6.x86_64
Installing libss-1.41.12-18.el6.x86_64
Installing pinentry-0.7.6-6.el6.x86_64
Installing binutils-2.20.51.0.2-5.36.el6.x86_64
Installing m4-1.4.13-5.el6.x86_64
Installing diffutils-2.8.1-28.el6.x86_64
Installing make-3.81-20.el6.x86_64
Installing dash-0.5.5.1-4.el6.x86_64
Installing ncurses-5.7-3.20090208.el6.x86_64
Installing groff-1.18.1.4-21.el6.x86_64
Installing less-436-10.el6.x86_64
Installing coreutils-libs-8.4-31.el6.x86_64
Installing gzip-1.3.12-19.el6_4.x86_64
Installing cracklib-2.8.16-4.el6.x86_64
Installing cracklib-dicts-2.8.16-4.el6.x86_64
Installing coreutils-8.4-31.el6.x86_64
Installing pam-1.1.1-17.el6.x86_64
Installing module-init-tools-3.9-21.el6_4.x86_64
Installing hwdata-0.233-9.1.el6.noarch
Installing redhat-logos-60.0.14-12.el6.centos.noarch
Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64
Installing libpciaccess-0.13.1-2.el6.x86_64
Installing nss-3.15.1-15.el6.x86_64
Installing nss-sysinit-3.15.1-15.el6.x86_64
Installing nss-tools-3.15.1-15.el6.x86_64
Installing openldap-2.4.23-32.el6_4.1.x86_64
Installing logrotate-3.7.8-17.el6.x86_64
Installing gdbm-1.8.0-36.el6.x86_64
Installing mingetty-1.08-5.el6.x86_64
Installing keyutils-libs-1.4-4.el6.x86_64
Installing krb5-libs-1.10.3-10.el6_4.6.x86_64
Installing openssl-1.0.1e-15.el6.x86_64
Installing libssh2-1.4.2-1.el6.x86_64
Installing libcurl-7.19.7-37.el6_4.x86_64
Installing gnupg2-2.0.14-6.el6_4.x86_64
Installing gpgme-1.1.8-3.el6.x86_64
Installing curl-7.19.7-37.el6_4.x86_64
Installing rpm-libs-4.8.0-37.el6.x86_64
Installing rpm-4.8.0-37.el6.x86_64
Installing fipscheck-lib-1.2.0-7.el6.x86_64
Installing fipscheck-1.2.0-7.el6.x86_64
Installing mysql-libs-5.1.71-1.el6.x86_64
Installing ethtool-3.5-1.el6.x86_64
Installing pciutils-libs-3.1.10-2.el6.x86_64
Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64
Installing libcap-ng-0.6.4-3.el6_0.1.x86_64
Installing libffi-3.0.5-3.2.el6.x86_64
Installing python-2.6.6-51.el6.x86_64
Installing python-libs-2.6.6-51.el6.x86_64
Installing python-pycurl-7.19.0-8.el6.x86_64
Installing python-urlgrabber-3.9.1-9.el6.noarch
Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64
Installing rpm-python-4.8.0-37.el6.x86_64
Installing python-iniparse-0.3.1-2.1.el6.noarch
Installing slang-2.2.1-1.el6.x86_64
Installing newt-0.52.11-3.el6.x86_64
Installing newt-python-0.52.11-3.el6.x86_64
Installing ustr-1.0.4-9.1.el6.x86_64
Installing libsemanage-2.0.43-4.2.el6.x86_64
Installing libaio-0.3.107-10.el6.x86_64
Installing pkgconfig-0.23-9.1.el6.x86_64
Installing gamin-0.1.10-9.el6.x86_64
Installing glib2-2.26.1-3.el6.x86_64
Installing shared-mime-info-0.70-4.el6.x86_64
Installing libuser-0.56.13-5.el6.x86_64
Installing grubby-7.0.15-5.el6.x86_64
Installing yum-metadata-parser-1.1.2-16.el6.x86_64
Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch
Installing yum-3.2.29-40.el6.centos.noarch
Installing dbus-glib-0.86-6.el6.x86_64
Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64
Installing centos-release-6-5.el6.centos.11.1.x86_64
Installing policycoreutils-2.0.83-19.39.el6.x86_64
Installing iptables-1.4.7-11.el6.x86_64
Installing iproute-2.6.32-31.el6.x86_64
Installing iputils-20071127-17.el6_4.2.x86_64
Installing util-linux-ng-2.17.2-12.14.el6.x86_64
Installing initscripts-9.03.40-2.el6.centos.x86_64
Installing udev-147-2.51.el6.x86_64
Installing device-mapper-libs-1.02.79-8.el6.x86_64
Installing device-mapper-1.02.79-8.el6.x86_64
Installing device-mapper-event-libs-1.02.79-8.el6.x86_64
Installing openssh-5.3p1-94.el6.x86_64
Installing device-mapper-event-1.02.79-8.el6.x86_64
Installing lvm2-libs-2.02.100-8.el6.x86_64
Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64
Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64
Installing kpartx-0.4.9-72.el6.x86_64
Installing libdrm-2.4.45-2.el6.x86_64
Installing plymouth-0.8.3-27.el6.centos.x86_64
Installing rsyslog-5.8.10-8.el6.x86_64
Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64
Installing postfix-2.6.6-2.2.el6_1.x86_64
Installing cronie-anacron-1.4.4-12.el6.x86_64
Installing cronie-1.4.4-12.el6.x86_64
Installing crontabs-1.10-33.el6.noarch
Installing ntpdate-4.2.6p5-1.el6.centos.x86_64
Installing iptables-ipv6-1.4.7-11.el6.x86_64
Installing selinux-policy-3.7.19-231.el6.noarch
Installing kbd-misc-1.15-11.el6.noarch
Installing kbd-1.15-11.el6.x86_64
Installing dracut-004-335.el6.noarch
Installing dracut-kernel-004-335.el6.noarch
Installing kernel-2.6.32-431.el6.x86_64
Installing fuse-2.8.3-4.el6.x86_64
Installing selinux-policy-targeted-3.7.19-231.el6.noarch
Installing system-config-firewall-base-1.2.27-5.el6.noarch
Installing ntp-4.2.6p5-1.el6.centos.x86_64
Installing device-mapper-multipath-0.4.9-72.el6.x86_64
Installing cryptsetup-luks-1.2.0-7.el6.x86_64
Installing lvm2-2.02.100-8.el6.x86_64
Installing openssh-clients-5.3p1-94.el6.x86_64
Installing openssh-server-5.3p1-94.el6.x86_64
Installing mdadm-3.2.6-7.el6.x86_64
Installing b43-openfwwf-5.2-4.el6.noarch
Installing dhclient-4.1.1-38.P1.el6.centos.x86_64
Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64
Installing passwd-0.77-4.el6_2.2.x86_64
Installing authconfig-6.1.12-13.el6.x86_64
Installing grub-0.97-83.el6.x86_64
Installing efibootmgr-0.5.4-11.el6.x86_64
Installing wget-1.12-1.8.el6.x86_64
Installing sudo-1.8.6p3-12.el6.x86_64
Installing audit-2.2-2.el6.x86_64
Installing e2fsprogs-1.41.12-18.el6.x86_64
Installing xfsprogs-3.1.1-14.el6.x86_64
Installing acl-2.2.49-6.el6.x86_64
Installing attr-2.4.44-7.el6.x86_64
Installing chef-11.8.0-1.el6.x86_64
warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
Installing bridge-utils-1.2-10.el6.x86_64
Installing rootfiles-8.1-6.1.el6.noarch
*** FINISHED INSTALLING PACKAGES ***

View File

@ -0,0 +1,286 @@
05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af
05:51:20,534 INFO : text mode forced from cmdline
05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return
05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting
05:51:20,656 DEBUG : Saving module ipv6
05:51:20,656 DEBUG : Saving module iscsi_ibft
05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs
05:51:20,656 DEBUG : Saving module pcspkr
05:51:20,656 DEBUG : Saving module edd
05:51:20,656 DEBUG : Saving module floppy
05:51:20,656 DEBUG : Saving module iscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi
05:51:20,656 DEBUG : Saving module scsi_transport_iscsi
05:51:20,656 DEBUG : Saving module squashfs
05:51:20,656 DEBUG : Saving module cramfs
05:51:20,656 DEBUG : probing buses
05:51:20,693 DEBUG : waiting for hardware to initialize
05:51:27,902 DEBUG : probing buses
05:51:27,925 DEBUG : waiting for hardware to initialize
05:51:47,187 INFO : getting kickstart file
05:51:47,196 INFO : eth0 has link, using it
05:51:47,208 INFO : doing kickstart... setting it up
05:51:47,208 DEBUG : activating device eth0
05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated
05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,611 INFO : setting up kickstart
05:51:52,611 INFO : kickstart forcing text mode
05:51:52,611 INFO : kickstartFromUrl
05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64
05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2
05:51:52,616 INFO : drive status is CDS_TRAY_OPEN
05:51:52,616 ERROR : Drive tray reports open when it should be closed
05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,636 DEBUG : going to set language to en_US.UTF-8
05:52:07,636 INFO : setting language to en_US.UTF-8
05:52:07,654 INFO : starting STEP_METHOD
05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog
05:52:07,654 DEBUG : skipMethodDialog is set
05:52:07,663 INFO : starting STEP_STAGE2
05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img
05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null)
05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory
05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img
05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error
05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img
05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,403 INFO : Loading SELinux policy
05:52:48,130 INFO : getting ready to spawn shell now
05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda
05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it
05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.
warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning)
05:52:54,868 INFO : Running kickstart %%pre script(s)
05:52:54,868 WARNING : '/bin/sh' specified as full path
05:52:56,966 INFO : All kickstart %%pre script(s) have been run
05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid
05:52:57,017 INFO : no initiator set
05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path
05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD!
05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp
05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64']
05:53:00,903 INFO : Display mode = t
05:53:00,903 INFO : Default encoding = utf-8
05:53:01,064 INFO : Detected 2016M of memory
05:53:01,064 INFO : Swap attempt of 4032M
05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid
05:53:01,399 INFO : no initiator set
05:53:05,059 INFO : setting installation environment hostname to server1
05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid.
05:53:05,276 INFO : Detected 2016M of memory
05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead.
05:53:05,277 INFO : Swap attempt of 3276M
05:53:05,453 WARNING : step installtype does not exist
05:53:05,454 WARNING : step confirminstall does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,457 WARNING : step complete does not exist
05:53:05,457 INFO : moving (1) to step setuptime
05:53:05,458 DEBUG : setuptime is a direct step
22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path
22:53:06,002 INFO : leaving (1) step setuptime
22:53:06,003 INFO : moving (1) to step autopartitionexecute
22:53:06,003 DEBUG : autopartitionexecute is a direct step
22:53:06,138 INFO : leaving (1) step autopartitionexecute
22:53:06,138 INFO : moving (1) to step storagedone
22:53:06,138 DEBUG : storagedone is a direct step
22:53:06,138 INFO : leaving (1) step storagedone
22:53:06,139 INFO : moving (1) to step enablefilesystems
22:53:06,139 DEBUG : enablefilesystems is a direct step
22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1
22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0
22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1
22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2
22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3
22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported
22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults
22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults
22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind
22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620
22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults
22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults
22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults
22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults
22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults
22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults
22:54:44,056 INFO : leaving (1) step enablefilesystems
22:54:44,057 INFO : moving (1) to step bootloadersetup
22:54:44,057 DEBUG : bootloadersetup is a direct step
22:54:44,061 INFO : leaving (1) step bootloadersetup
22:54:44,061 INFO : moving (1) to step reposetup
22:54:44,061 DEBUG : reposetup is a direct step
22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/
22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml
22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2
22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml
22:54:58,971 INFO : leaving (1) step reposetup
22:54:58,971 INFO : moving (1) to step basepkgsel
22:54:58,972 DEBUG : basepkgsel is a direct step
22:54:58,986 WARNING : not adding Base group
22:54:59,388 INFO : leaving (1) step basepkgsel
22:54:59,388 INFO : moving (1) to step postselection
22:54:59,388 DEBUG : postselection is a direct step
22:54:59,390 INFO : selected kernel package for kernel
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz
22:55:07,745 INFO : leaving (1) step postselection
22:55:07,745 INFO : moving (1) to step install
22:55:07,748 INFO : leaving (1) step install
22:55:07,748 INFO : moving (1) to step preinstallconfig
22:55:07,748 DEBUG : preinstallconfig is a direct step
22:55:08,087 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults
22:55:08,091 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults
22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:55:08,122 INFO : leaving (1) step preinstallconfig
22:55:08,122 INFO : moving (1) to step installpackages
22:55:08,122 DEBUG : installpackages is a direct step
22:55:08,122 INFO : Preparing to install packages
23:17:06,152 INFO : leaving (1) step installpackages
23:17:06,153 INFO : moving (1) to step postinstallconfig
23:17:06,153 DEBUG : postinstallconfig is a direct step
23:17:06,162 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64
23:17:06,181 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo
23:17:06,183 INFO : leaving (1) step postinstallconfig
23:17:06,184 INFO : moving (1) to step writeconfig
23:17:06,184 DEBUG : writeconfig is a direct step
23:17:06,184 INFO : Writing main configuration
23:17:06,219 WARNING : '/usr/sbin/authconfig' specified as full path
23:17:11,643 WARNING : '/usr/sbin/lokkit' specified as full path
23:17:11,703 WARNING : '/usr/sbin/lokkit' specified as full path
23:17:11,885 INFO : removing libuser.conf at /tmp/libuser.WMDW9M
23:17:11,885 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
23:17:12,722 INFO : leaving (1) step writeconfig
23:17:12,722 INFO : moving (1) to step firstboot
23:17:12,723 DEBUG : firstboot is a direct step
23:17:12,723 INFO : leaving (1) step firstboot
23:17:12,723 INFO : moving (1) to step instbootloader
23:17:12,724 DEBUG : instbootloader is a direct step
23:17:14,664 WARNING : '/sbin/grub-install' specified as full path
23:17:15,006 WARNING : '/sbin/grub' specified as full path
23:17:16,039 INFO : leaving (1) step instbootloader
23:17:16,040 INFO : moving (1) to step reipl
23:17:16,040 DEBUG : reipl is a direct step
23:17:16,040 INFO : leaving (1) step reipl
23:17:16,040 INFO : moving (1) to step writeksconfig
23:17:16,040 DEBUG : writeksconfig is a direct step
23:17:16,041 INFO : Writing autokickstart file
23:17:16,070 INFO : leaving (1) step writeksconfig
23:17:16,071 INFO : moving (1) to step setfilecon
23:17:16,071 DEBUG : setfilecon is a direct step
23:17:16,071 INFO : setting SELinux contexts for anaconda created files
23:17:17,822 INFO : leaving (1) step setfilecon
23:17:17,822 INFO : moving (1) to step copylogs
23:17:17,822 DEBUG : copylogs is a direct step
23:17:17,822 INFO : Copying anaconda logs
23:17:17,825 INFO : leaving (1) step copylogs
23:17:17,825 INFO : moving (1) to step methodcomplete
23:17:17,825 DEBUG : methodcomplete is a direct step
23:17:17,825 INFO : leaving (1) step methodcomplete
23:17:17,826 INFO : moving (1) to step postscripts
23:17:17,826 DEBUG : postscripts is a direct step
23:17:17,826 INFO : Running kickstart %%post script(s)
23:17:17,858 WARNING : '/bin/sh' specified as full path
23:17:21,002 INFO : All kickstart %%post script(s) have been run
23:17:21,002 INFO : leaving (1) step postscripts
23:17:21,002 INFO : moving (1) to step dopostaction
23:17:21,002 DEBUG : dopostaction is a direct step
23:17:21,003 INFO : leaving (1) step dopostaction

View File

@ -0,0 +1,168 @@
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: execute[Keystone: sleep] ran successfully
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone] action create (openstack-identity::server line 73)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] owner changed to 163
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] mode changed to 700
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone/ssl] action create (openstack-identity::server line 79)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing file[/var/lib/keystone/keystone.db] action delete (openstack-identity::server line 87)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[keystone-manage pki_setup] action run (openstack-identity::server line 91)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing template[/etc/keystone/keystone.conf] action create (openstack-identity::server line 140)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] backed up to /var/chef/backup/etc/keystone/keystone.conf.chef-20140221203911.069202
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] updated file contents /etc/keystone/keystone.conf
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] owner changed to 163
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] mode changed to 644
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] sending restart action to service[keystone] (immediate)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing service[keystone] action restart (openstack-identity::server line 64)
Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] restarted
Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] sending run action to execute[Keystone: sleep] (immediate)
Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[Keystone: sleep] action run (openstack-identity::server line 58)
Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: execute[Keystone: sleep] ran successfully
Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: Processing template[/etc/keystone/default_catalog.templates] action create (openstack-identity::server line 158)
Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: Processing execute[keystone-manage db_sync] action run (openstack-identity::server line 172)
Feb 21 20:39:43 server1.1 [2014-02-21T20:39:42-08:00] INFO: execute[keystone-manage db_sync] ran successfully
Feb 21 20:39:43 server1.1 [2014-02-21T20:39:42-08:00] INFO: Processing bash[bootstrap-keystone-admin] action run (openstack-identity::registration line 40)
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: bash[bootstrap-keystone-admin] ran successfully
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Processing openstack-identity_register[Register 'admin' Tenant] action create_tenant (openstack-identity::registration line 80)
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Tenant 'admin' already exists.. Not creating.
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Tenant UUID: 87cf46951cc14159bd16b68e3eb96321
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Processing openstack-identity_register[Register 'service' Tenant] action create_tenant (openstack-identity::registration line 80)
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Created tenant 'service'
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Processing openstack-identity_register[Register 'admin' Role] action create_role (openstack-identity::registration line 92)
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Role 'admin' already exists.. Not creating.
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Role UUID: 8070c199fc2647c9a50176d11256bebc
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Processing openstack-identity_register[Register 'Member' Role] action create_role (openstack-identity::registration line 92)
Feb 21 20:39:47 server1.1 [2014-02-21T20:39:46-08:00] INFO: Created Role 'Member'
Feb 21 20:39:47 server1.1 [2014-02-21T20:39:46-08:00] INFO: Processing openstack-identity_register[Register 'compute' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:39:48 server1.1 [2014-02-21T20:39:47-08:00] INFO: Created user 'service' for tenant 'service'
Feb 21 20:39:48 server1.1 [2014-02-21T20:39:47-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:39:49 server1.1 [2014-02-21T20:39:48-08:00] INFO: Granted Role 'admin' to User 'service' in Tenant 'service'
Feb 21 20:39:49 server1.1 [2014-02-21T20:39:48-08:00] INFO: Processing openstack-identity_register[Register compute Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:39:50 server1.1 [2014-02-21T20:39:49-08:00] INFO: Created service 'nova'
Feb 21 20:39:50 server1.1 [2014-02-21T20:39:49-08:00] INFO: Processing openstack-identity_register[Register compute Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:39:50 server1.1 [2014-02-21T20:39:50-08:00] INFO: Created endpoint for service type 'compute'
Feb 21 20:39:50 server1.1 [2014-02-21T20:39:50-08:00] INFO: Processing openstack-identity_register[Register 'network' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:39:51 server1.1 [2014-02-21T20:39:50-08:00] INFO: User 'service' already exists for tenant 'service'
Feb 21 20:39:51 server1.1 [2014-02-21T20:39:50-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:39:52 server1.1 [2014-02-21T20:39:51-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service'
Feb 21 20:39:52 server1.1 [2014-02-21T20:39:51-08:00] INFO: Processing openstack-identity_register[Register network Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:39:53 server1.1 [2014-02-21T20:39:52-08:00] INFO: Created service 'quantum'
Feb 21 20:39:53 server1.1 [2014-02-21T20:39:52-08:00] INFO: Processing openstack-identity_register[Register network Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Created endpoint for service type 'network'
Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Processing openstack-identity_register[Register 'volume' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: User 'service' already exists for tenant 'service'
Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:39:55 server1.1 [2014-02-21T20:39:54-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service'
Feb 21 20:39:55 server1.1 [2014-02-21T20:39:54-08:00] INFO: Processing openstack-identity_register[Register volume Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:39:56 server1.1 [2014-02-21T20:39:55-08:00] INFO: Created service 'cinder'
Feb 21 20:39:56 server1.1 [2014-02-21T20:39:55-08:00] INFO: Processing openstack-identity_register[Register volume Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Created endpoint for service type 'volume'
Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Processing openstack-identity_register[Register identity Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Created service 'keystone'
Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Processing openstack-identity_register[Register identity Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:39:58 server1.1 [2014-02-21T20:39:57-08:00] INFO: Created endpoint for service type 'identity'
Feb 21 20:39:58 server1.1 [2014-02-21T20:39:57-08:00] INFO: Processing openstack-identity_register[Register 'image' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:39:59 server1.1 [2014-02-21T20:39:58-08:00] INFO: User 'service' already exists for tenant 'service'
Feb 21 20:39:59 server1.1 [2014-02-21T20:39:58-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:40:00 server1.1 [2014-02-21T20:39:59-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service'
Feb 21 20:40:00 server1.1 [2014-02-21T20:39:59-08:00] INFO: Processing openstack-identity_register[Register image Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:40:00 server1.1 [2014-02-21T20:40:00-08:00] INFO: Created service 'glance'
Feb 21 20:40:00 server1.1 [2014-02-21T20:40:00-08:00] INFO: Processing openstack-identity_register[Register image Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:40:01 server1.1 [2014-02-21T20:40:00-08:00] INFO: Created endpoint for service type 'image'
Feb 21 20:40:01 server1.1 [2014-02-21T20:40:00-08:00] INFO: Processing openstack-identity_register[Register 'object-store' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:40:02 server1.1 [2014-02-21T20:40:01-08:00] INFO: User 'service' already exists for tenant 'service'
Feb 21 20:40:02 server1.1 [2014-02-21T20:40:01-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:40:03 server1.1 [2014-02-21T20:40:02-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service'
Feb 21 20:40:03 server1.1 [2014-02-21T20:40:02-08:00] INFO: Processing openstack-identity_register[Register object-store Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:40:04 server1.1 [2014-02-21T20:40:03-08:00] INFO: Created service 'swift'
Feb 21 20:40:04 server1.1 [2014-02-21T20:40:03-08:00] INFO: Processing openstack-identity_register[Create EC2 credentials for 'admin' user] action create_ec2_credentials (openstack-identity::registration line 166)
Feb 21 20:40:05 server1.1 [2014-02-21T20:40:04-08:00] INFO: Created EC2 Credentials for User 'admin' in Tenant 'admin'
Feb 21 20:40:05 server1.1 [2014-02-21T20:40:04-08:00] INFO: Processing openstack-identity_register[Create EC2 credentials for 'monitoring' user] action create_ec2_credentials (openstack-identity::registration line 166)
Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] ERROR: Unable to create EC2 Credentials for User 'monitoring' in Tenant 'service'
Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] ERROR: Error was: Could not lookup uuid for ec2-credentials:tenant=>service. Error was 'Client' object has no attribute 'auth_user_id'
Feb 21 20:40:07 server1.1 (1)
Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] INFO: Processing package[openstack-cinder] action upgrade (openstack-block-storage::cinder-common line 26)
Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] INFO: package[openstack-cinder] installing openstack-cinder-2013.1.4-1.el6 from openstack repository
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: package[openstack-cinder] upgraded from uninstalled to 2013.1.4-1.el6
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/etc/cinder] action create (openstack-block-storage::cinder-common line 44)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] owner changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] group changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] mode changed to 750
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing template[/etc/cinder/cinder.conf] action create (openstack-block-storage::cinder-common line 51)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] backed up to /var/chef/backup/etc/cinder/cinder.conf.chef-20140221204110.415861
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] updated file contents /etc/cinder/cinder.conf
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] owner changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] mode changed to 644
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing package[python-cinderclient] action upgrade (openstack-block-storage::api line 32)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing package[MySQL-python] action upgrade (openstack-block-storage::api line 41)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/var/cache/cinder] action create (openstack-block-storage::api line 46)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] created directory /var/cache/cinder
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] owner changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] group changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] mode changed to 700
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/var/lock/cinder] action create (openstack-block-storage::api line 52)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] created directory /var/lock/cinder
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] owner changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] group changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] mode changed to 700
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing service[cinder-api] action enable (openstack-block-storage::api line 58)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: service[cinder-api] enabled
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing execute[cinder-manage db sync] action run (openstack-block-storage::api line 71)
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: execute[cinder-manage db sync] ran successfully
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing template[/etc/cinder/api-paste.ini] action create (openstack-block-storage::api line 73)
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] backed up to /var/chef/backup/etc/cinder/api-paste.ini.chef-20140221204130.194587
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] updated file contents /etc/cinder/api-paste.ini
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] owner changed to 165
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] mode changed to 644
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] sending restart action to service[cinder-api] (immediate)
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-api] action restart (openstack-block-storage::api line 58)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-api] restarted
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing template[/etc/cinder/policy.json] action create (openstack-block-storage::api line 88)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] backed up to /var/chef/backup/etc/cinder/policy.json.chef-20140221204130.442890
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] updated file contents /etc/cinder/policy.json
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] owner changed to 165
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] mode changed to 644
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] not queuing delayed action restart on service[cinder-api] (delayed), as it's already been queued
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing package[MySQL-python] action upgrade (openstack-block-storage::scheduler line 45)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-scheduler] action enable (openstack-block-storage::scheduler line 50)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-scheduler] enabled
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-scheduler] action start (openstack-block-storage::scheduler line 50)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-scheduler] started
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing package[openstack-nova-common] action upgrade (openstack-compute::nova-common line 37)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: package[openstack-nova-common] installing openstack-nova-common-2013.1.4-7.el6 from openstack repository
Feb 21 20:41:52 server1.1 [2014-02-21T20:41:52-08:00] INFO: package[openstack-nova-common] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:41:52 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[python-memcached] action install (openstack-compute::nova-common line 46)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/etc/nova] action create (openstack-compute::nova-common line 51)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] owner changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] group changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] mode changed to 700
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/etc/nova/rootwrap.d] action create (openstack-compute::nova-common line 59)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] created directory /etc/nova/rootwrap.d
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] mode changed to 700
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/nova.conf] action create (openstack-compute::nova-common line 134)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] backed up to /var/chef/backup/etc/nova/nova.conf.chef-20140221204152.340272
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] updated file contents /etc/nova/nova.conf
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] owner changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.conf] action create (openstack-compute::nova-common line 164)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] backed up to /var/chef/backup/etc/nova/rootwrap.conf.chef-20140221204152.347747
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] updated file contents /etc/nova/rootwrap.conf
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/api-metadata.filters] action create (openstack-compute::nova-common line 172)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] created file /etc/nova/rootwrap.d/api-metadata.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] updated file contents /etc/nova/rootwrap.d/api-metadata.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/compute.filters] action create (openstack-compute::nova-common line 180)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] created file /etc/nova/rootwrap.d/compute.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] updated file contents /etc/nova/rootwrap.d/compute.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/network.filters] action create (openstack-compute::nova-common line 188)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] created file /etc/nova/rootwrap.d/network.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] updated file contents /etc/nova/rootwrap.d/network.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] group changed to 0

View File

@ -0,0 +1,212 @@
Installing libgcc-4.4.7-4.el6.x86_64
warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Installing setup-2.8.14-20.el6_4.1.noarch
Installing filesystem-2.4.30-3.el6.x86_64
Installing basesystem-10.0-4.el6.noarch
Installing ncurses-base-5.7-3.20090208.el6.x86_64
Installing kernel-firmware-2.6.32-431.el6.noarch
Installing tzdata-2013g-1.el6.noarch
Installing nss-softokn-freebl-3.14.3-9.el6.x86_64
Installing glibc-common-2.12-1.132.el6.x86_64
Installing glibc-2.12-1.132.el6.x86_64
Installing ncurses-libs-5.7-3.20090208.el6.x86_64
Installing bash-4.1.2-15.el6_4.x86_64
Installing libattr-2.4.44-7.el6.x86_64
Installing libcap-2.16-5.5.el6.x86_64
Installing zlib-1.2.3-29.el6.x86_64
Installing info-4.13a-8.el6.x86_64
Installing popt-1.13-7.el6.x86_64
Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64
Installing audit-libs-2.2-2.el6.x86_64
Installing libcom_err-1.41.12-18.el6.x86_64
Installing libacl-2.2.49-6.el6.x86_64
Installing db4-4.7.25-18.el6_4.x86_64
Installing nspr-4.10.0-1.el6.x86_64
Installing nss-util-3.15.1-3.el6.x86_64
Installing readline-6.0-4.el6.x86_64
Installing libsepol-2.0.41-4.el6.x86_64
Installing libselinux-2.0.94-5.3.el6_4.1.x86_64
Installing shadow-utils-4.1.4.2-13.el6.x86_64
Installing sed-4.2.1-10.el6.x86_64
Installing bzip2-libs-1.0.5-7.el6_0.x86_64
Installing libuuid-2.17.2-12.14.el6.x86_64
Installing libstdc++-4.4.7-4.el6.x86_64
Installing libblkid-2.17.2-12.14.el6.x86_64
Installing gawk-3.1.7-10.el6.x86_64
Installing file-libs-5.04-15.el6.x86_64
Installing libgpg-error-1.7-4.el6.x86_64
Installing dbus-libs-1.2.24-7.el6_3.x86_64
Installing libudev-147-2.51.el6.x86_64
Installing pcre-7.8-6.el6.x86_64
Installing grep-2.6.3-4.el6.x86_64
Installing lua-5.1.4-4.1.el6.x86_64
Installing sqlite-3.6.20-1.el6.x86_64
Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64
Installing libidn-1.18-2.el6.x86_64
Installing expat-2.0.1-11.el6_2.x86_64
Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64
Installing elfutils-libelf-0.152-1.el6.x86_64
Installing libgcrypt-1.4.5-11.el6_4.x86_64
Installing bzip2-1.0.5-7.el6_0.x86_64
Installing findutils-4.4.2-6.el6.x86_64
Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64
Installing checkpolicy-2.0.22-1.el6.x86_64
Installing cpio-2.10-11.el6_3.x86_64
Installing which-2.19-6.el6.x86_64
Installing libxml2-2.7.6-14.el6.x86_64
Installing libedit-2.11-4.20080712cvs.1.el6.x86_64
Installing pth-2.0.7-9.3.el6.x86_64
Installing tcp_wrappers-libs-7.6-57.el6.x86_64
Installing sysvinit-tools-2.87-5.dsf.el6.x86_64
Installing libtasn1-2.3-3.el6_2.1.x86_64
Installing p11-kit-0.18.5-2.el6.x86_64
Installing p11-kit-trust-0.18.5-2.el6.x86_64
Installing ca-certificates-2013.1.94-65.0.el6.noarch
Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64
Installing nss-softokn-3.14.3-9.el6.x86_64
Installing libnih-1.0.1-7.el6.x86_64
Installing upstart-0.6.5-12.el6_4.1.x86_64
Installing file-5.04-15.el6.x86_64
Installing gmp-4.3.1-7.el6_2.2.x86_64
Installing libusb-0.1.12-23.el6.x86_64
Installing MAKEDEV-3.24-6.el6.x86_64
Installing libutempter-1.1.5-4.1.el6.x86_64
Installing psmisc-22.6-15.el6_0.1.x86_64
Installing net-tools-1.60-110.el6_2.x86_64
Installing vim-minimal-7.2.411-1.8.el6.x86_64
Installing tar-1.23-11.el6.x86_64
Installing procps-3.2.8-25.el6.x86_64
Installing db4-utils-4.7.25-18.el6_4.x86_64
Installing e2fsprogs-libs-1.41.12-18.el6.x86_64
Installing libss-1.41.12-18.el6.x86_64
Installing pinentry-0.7.6-6.el6.x86_64
Installing binutils-2.20.51.0.2-5.36.el6.x86_64
Installing m4-1.4.13-5.el6.x86_64
Installing diffutils-2.8.1-28.el6.x86_64
Installing make-3.81-20.el6.x86_64
Installing dash-0.5.5.1-4.el6.x86_64
Installing ncurses-5.7-3.20090208.el6.x86_64
Installing groff-1.18.1.4-21.el6.x86_64
Installing less-436-10.el6.x86_64
Installing coreutils-libs-8.4-31.el6.x86_64
Installing gzip-1.3.12-19.el6_4.x86_64
Installing cracklib-2.8.16-4.el6.x86_64
Installing cracklib-dicts-2.8.16-4.el6.x86_64
Installing coreutils-8.4-31.el6.x86_64
Installing pam-1.1.1-17.el6.x86_64
Installing module-init-tools-3.9-21.el6_4.x86_64
Installing hwdata-0.233-9.1.el6.noarch
Installing redhat-logos-60.0.14-12.el6.centos.noarch
Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64
Installing libpciaccess-0.13.1-2.el6.x86_64
Installing nss-3.15.1-15.el6.x86_64
Installing nss-sysinit-3.15.1-15.el6.x86_64
Installing nss-tools-3.15.1-15.el6.x86_64
Installing openldap-2.4.23-32.el6_4.1.x86_64
Installing logrotate-3.7.8-17.el6.x86_64
Installing gdbm-1.8.0-36.el6.x86_64
Installing mingetty-1.08-5.el6.x86_64
Installing keyutils-libs-1.4-4.el6.x86_64
Installing krb5-libs-1.10.3-10.el6_4.6.x86_64
Installing openssl-1.0.1e-15.el6.x86_64
Installing libssh2-1.4.2-1.el6.x86_64
Installing libcurl-7.19.7-37.el6_4.x86_64
Installing gnupg2-2.0.14-6.el6_4.x86_64
Installing gpgme-1.1.8-3.el6.x86_64
Installing curl-7.19.7-37.el6_4.x86_64
Installing rpm-libs-4.8.0-37.el6.x86_64
Installing rpm-4.8.0-37.el6.x86_64
Installing fipscheck-lib-1.2.0-7.el6.x86_64
Installing fipscheck-1.2.0-7.el6.x86_64
Installing mysql-libs-5.1.71-1.el6.x86_64
Installing ethtool-3.5-1.el6.x86_64
Installing pciutils-libs-3.1.10-2.el6.x86_64
Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64
Installing libcap-ng-0.6.4-3.el6_0.1.x86_64
Installing libffi-3.0.5-3.2.el6.x86_64
Installing python-2.6.6-51.el6.x86_64
Installing python-libs-2.6.6-51.el6.x86_64
Installing python-pycurl-7.19.0-8.el6.x86_64
Installing python-urlgrabber-3.9.1-9.el6.noarch
Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64
Installing rpm-python-4.8.0-37.el6.x86_64
Installing python-iniparse-0.3.1-2.1.el6.noarch
Installing slang-2.2.1-1.el6.x86_64
Installing newt-0.52.11-3.el6.x86_64
Installing newt-python-0.52.11-3.el6.x86_64
Installing ustr-1.0.4-9.1.el6.x86_64
Installing libsemanage-2.0.43-4.2.el6.x86_64
Installing libaio-0.3.107-10.el6.x86_64
Installing pkgconfig-0.23-9.1.el6.x86_64
Installing gamin-0.1.10-9.el6.x86_64
Installing glib2-2.26.1-3.el6.x86_64
Installing shared-mime-info-0.70-4.el6.x86_64
Installing libuser-0.56.13-5.el6.x86_64
Installing grubby-7.0.15-5.el6.x86_64
Installing yum-metadata-parser-1.1.2-16.el6.x86_64
Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch
Installing yum-3.2.29-40.el6.centos.noarch
Installing dbus-glib-0.86-6.el6.x86_64
Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64
Installing centos-release-6-5.el6.centos.11.1.x86_64
Installing policycoreutils-2.0.83-19.39.el6.x86_64
Installing iptables-1.4.7-11.el6.x86_64
Installing iproute-2.6.32-31.el6.x86_64
Installing iputils-20071127-17.el6_4.2.x86_64
Installing util-linux-ng-2.17.2-12.14.el6.x86_64
Installing initscripts-9.03.40-2.el6.centos.x86_64
Installing udev-147-2.51.el6.x86_64
Installing device-mapper-libs-1.02.79-8.el6.x86_64
Installing device-mapper-1.02.79-8.el6.x86_64
Installing device-mapper-event-libs-1.02.79-8.el6.x86_64
Installing openssh-5.3p1-94.el6.x86_64
Installing device-mapper-event-1.02.79-8.el6.x86_64
Installing lvm2-libs-2.02.100-8.el6.x86_64
Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64
Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64
Installing kpartx-0.4.9-72.el6.x86_64
Installing libdrm-2.4.45-2.el6.x86_64
Installing plymouth-0.8.3-27.el6.centos.x86_64
Installing rsyslog-5.8.10-8.el6.x86_64
Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64
Installing postfix-2.6.6-2.2.el6_1.x86_64
Installing cronie-anacron-1.4.4-12.el6.x86_64
Installing cronie-1.4.4-12.el6.x86_64
Installing crontabs-1.10-33.el6.noarch
Installing ntpdate-4.2.6p5-1.el6.centos.x86_64
Installing iptables-ipv6-1.4.7-11.el6.x86_64
Installing selinux-policy-3.7.19-231.el6.noarch
Installing kbd-misc-1.15-11.el6.noarch
Installing kbd-1.15-11.el6.x86_64
Installing dracut-004-335.el6.noarch
Installing dracut-kernel-004-335.el6.noarch
Installing kernel-2.6.32-431.el6.x86_64
Installing fuse-2.8.3-4.el6.x86_64
Installing selinux-policy-targeted-3.7.19-231.el6.noarch
Installing system-config-firewall-base-1.2.27-5.el6.noarch
Installing ntp-4.2.6p5-1.el6.centos.x86_64
Installing device-mapper-multipath-0.4.9-72.el6.x86_64
Installing cryptsetup-luks-1.2.0-7.el6.x86_64
Installing lvm2-2.02.100-8.el6.x86_64
Installing openssh-clients-5.3p1-94.el6.x86_64
Installing openssh-server-5.3p1-94.el6.x86_64
Installing mdadm-3.2.6-7.el6.x86_64
Installing b43-openfwwf-5.2-4.el6.noarch
Installing dhclient-4.1.1-38.P1.el6.centos.x86_64
Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64
Installing passwd-0.77-4.el6_2.2.x86_64
Installing authconfig-6.1.12-13.el6.x86_64
Installing grub-0.97-83.el6.x86_64
Installing efibootmgr-0.5.4-11.el6.x86_64
Installing wget-1.12-1.8.el6.x86_64
Installing sudo-1.8.6p3-12.el6.x86_64
Installing audit-2.2-2.el6.x86_64
Installing e2fsprogs-1.41.12-18.el6.x86_64
Installing xfsprogs-3.1.1-14.el6.x86_64
Installing acl-2.2.49-6.el6.x86_64
Installing attr-2.4.44-7.el6.x86_64
Installing chef-11.8.0-1.el6.x86_64
warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
Installing bridge-utils-1.2-10.el6.x86_64
Installing rootfiles-8.1-6.1.el6.noarch
*** FINISHED INSTALLING PACKAGES ***

View File

@ -0,0 +1,280 @@
05:50:22,531 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8
05:50:22,531 INFO : text mode forced from cmdline
05:50:22,531 DEBUG : readNetInfo /tmp/s390net not found, early return
05:50:22,531 INFO : anaconda version 13.21.215 on x86_64 starting
05:50:22,649 DEBUG : Saving module ipv6
05:50:22,649 DEBUG : Saving module iscsi_ibft
05:50:22,649 DEBUG : Saving module iscsi_boot_sysfs
05:50:22,649 DEBUG : Saving module pcspkr
05:50:22,649 DEBUG : Saving module edd
05:50:22,649 DEBUG : Saving module floppy
05:50:22,649 DEBUG : Saving module iscsi_tcp
05:50:22,649 DEBUG : Saving module libiscsi_tcp
05:50:22,649 DEBUG : Saving module libiscsi
05:50:22,649 DEBUG : Saving module scsi_transport_iscsi
05:50:22,649 DEBUG : Saving module squashfs
05:50:22,649 DEBUG : Saving module cramfs
05:50:22,649 DEBUG : probing buses
05:50:22,673 DEBUG : waiting for hardware to initialize
05:50:28,619 DEBUG : probing buses
05:50:28,644 DEBUG : waiting for hardware to initialize
05:50:32,015 INFO : getting kickstart file
05:50:32,022 INFO : eth0 has link, using it
05:50:32,033 INFO : doing kickstart... setting it up
05:50:32,034 DEBUG : activating device eth0
05:50:40,048 INFO : wait_for_iface_activation (2502): device eth0 activated
05:50:40,048 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server2.1
05:50:40,049 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server2.1
05:50:40,134 INFO : setting up kickstart
05:50:40,134 INFO : kickstart forcing text mode
05:50:40,134 INFO : kickstartFromUrl
05:50:40,134 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64
05:50:40,135 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2
05:50:40,137 INFO : drive status is CDS_TRAY_OPEN
05:50:40,137 ERROR : Drive tray reports open when it should be closed
05:50:55,155 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:50:55,156 DEBUG : going to set language to en_US.UTF-8
05:50:55,156 INFO : setting language to en_US.UTF-8
05:50:55,169 INFO : starting STEP_METHOD
05:50:55,169 DEBUG : loaderData->method is set, adding skipMethodDialog
05:50:55,169 DEBUG : skipMethodDialog is set
05:50:55,176 INFO : starting STEP_STAGE2
05:50:55,176 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:50:55,176 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img
05:50:56,174 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null)
05:50:56,175 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory
05:50:56,175 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img
05:50:57,459 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error
05:50:57,459 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:51:46,964 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img
05:51:46,964 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:51:47,009 INFO : Loading SELinux policy
05:51:47,753 INFO : getting ready to spawn shell now
05:51:47,973 INFO : Running anaconda script /usr/bin/anaconda
05:51:52,842 INFO : CentOS Linux is the highest priority installclass, using it
05:51:52,887 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.
warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning)
05:51:52,888 INFO : Running kickstart %%pre script(s)
05:51:52,888 WARNING : '/bin/sh' specified as full path
05:51:54,265 INFO : All kickstart %%pre script(s) have been run
05:51:54,314 INFO : ISCSID is /usr/sbin/iscsid
05:51:54,314 INFO : no initiator set
05:51:54,416 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path
05:51:54,425 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD!
05:51:54,425 INFO : no /etc/zfcp.conf; not configuring zfcp
05:51:59,033 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage"
05:51:59,033 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64']
05:51:59,033 INFO : Display mode = t
05:51:59,034 INFO : Default encoding = utf-8
05:51:59,193 INFO : Detected 2016M of memory
05:51:59,193 INFO : Swap attempt of 4032M
05:51:59,528 INFO : ISCSID is /usr/sbin/iscsid
05:51:59,528 INFO : no initiator set
05:52:00,372 INFO : setting installation environment hostname to server2
05:52:00,415 WARNING : Timezone US/Pacific set in kickstart is not valid.
05:52:00,541 INFO : Detected 2016M of memory
05:52:00,541 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead.
05:52:00,541 INFO : Swap attempt of 3276M
05:52:00,698 WARNING : step installtype does not exist
05:52:00,699 WARNING : step confirminstall does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,702 INFO : moving (1) to step setuptime
05:52:00,702 DEBUG : setuptime is a direct step
22:52:00,703 WARNING : '/usr/sbin/hwclock' specified as full path
22:52:02,003 INFO : leaving (1) step setuptime
22:52:02,003 INFO : moving (1) to step autopartitionexecute
22:52:02,003 DEBUG : autopartitionexecute is a direct step
22:52:02,141 INFO : leaving (1) step autopartitionexecute
22:52:02,141 INFO : moving (1) to step storagedone
22:52:02,141 DEBUG : storagedone is a direct step
22:52:02,142 INFO : leaving (1) step storagedone
22:52:02,142 INFO : moving (1) to step enablefilesystems
22:52:02,142 DEBUG : enablefilesystems is a direct step
22:52:08,928 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1
22:52:12,407 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:52:25,536 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0
22:52:30,102 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1
22:52:35,181 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2
22:52:40,809 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3
22:52:44,576 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported
22:52:44,576 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-rootvol on /mnt/sysimage as ext3 with options defaults
22:52:45,082 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults
22:52:45,230 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind
22:52:45,240 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620
22:52:45,247 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults
22:52:45,333 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-homevol on /mnt/sysimage/home as ext3 with options defaults
22:52:45,482 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:52:45,483 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults
22:52:45,487 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:52:45,534 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults
22:52:45,571 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults
22:52:45,795 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-varvol on /mnt/sysimage/var as ext3 with options defaults
22:52:45,955 INFO : leaving (1) step enablefilesystems
22:52:45,955 INFO : moving (1) to step bootloadersetup
22:52:45,956 DEBUG : bootloadersetup is a direct step
22:52:45,960 INFO : leaving (1) step bootloadersetup
22:52:45,960 INFO : moving (1) to step reposetup
22:52:45,960 DEBUG : reposetup is a direct step
22:52:47,076 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
22:52:47,077 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/
22:52:47,296 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml
22:52:47,358 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2
22:52:47,499 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml
22:52:47,629 INFO : leaving (1) step reposetup
22:52:47,629 INFO : moving (1) to step basepkgsel
22:52:47,629 DEBUG : basepkgsel is a direct step
22:52:47,645 WARNING : not adding Base group
22:52:48,052 INFO : leaving (1) step basepkgsel
22:52:48,053 INFO : moving (1) to step postselection
22:52:48,053 DEBUG : postselection is a direct step
22:52:48,056 INFO : selected kernel package for kernel
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz
22:52:53,656 INFO : leaving (1) step postselection
22:52:53,657 INFO : moving (1) to step install
22:52:53,660 INFO : leaving (1) step install
22:52:53,660 INFO : moving (1) to step preinstallconfig
22:52:53,660 DEBUG : preinstallconfig is a direct step
22:52:54,102 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults
22:52:54,107 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults
22:52:54,117 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:52:54,117 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:52:54,130 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:52:54,130 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:52:54,134 INFO : leaving (1) step preinstallconfig
22:52:54,134 INFO : moving (1) to step installpackages
22:52:54,134 DEBUG : installpackages is a direct step
22:52:54,134 INFO : Preparing to install packages
23:16:26,925 INFO : leaving (1) step installpackages
23:16:26,926 INFO : moving (1) to step postinstallconfig
23:16:26,926 DEBUG : postinstallconfig is a direct step
23:16:26,934 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64
23:16:26,949 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo
23:16:26,953 INFO : leaving (1) step postinstallconfig
23:16:26,953 INFO : moving (1) to step writeconfig
23:16:26,953 DEBUG : writeconfig is a direct step
23:16:26,953 INFO : Writing main configuration
23:16:26,958 WARNING : '/usr/sbin/authconfig' specified as full path
23:16:30,473 WARNING : '/usr/sbin/lokkit' specified as full path
23:16:30,530 WARNING : '/usr/sbin/lokkit' specified as full path
23:16:30,632 INFO : removing libuser.conf at /tmp/libuser.KyLOeb
23:16:30,633 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage"
23:16:31,956 INFO : leaving (1) step writeconfig
23:16:31,956 INFO : moving (1) to step firstboot
23:16:31,957 DEBUG : firstboot is a direct step
23:16:31,957 INFO : leaving (1) step firstboot
23:16:31,957 INFO : moving (1) to step instbootloader
23:16:31,957 DEBUG : instbootloader is a direct step
23:16:33,920 WARNING : '/sbin/grub-install' specified as full path
23:16:34,226 WARNING : '/sbin/grub' specified as full path
23:16:35,092 INFO : leaving (1) step instbootloader
23:16:35,092 INFO : moving (1) to step reipl
23:16:35,092 DEBUG : reipl is a direct step
23:16:35,093 INFO : leaving (1) step reipl
23:16:35,093 INFO : moving (1) to step writeksconfig
23:16:35,093 DEBUG : writeksconfig is a direct step
23:16:35,093 INFO : Writing autokickstart file
23:16:35,124 INFO : leaving (1) step writeksconfig
23:16:35,124 INFO : moving (1) to step setfilecon
23:16:35,125 DEBUG : setfilecon is a direct step
23:16:35,125 INFO : setting SELinux contexts for anaconda created files
23:16:36,828 INFO : leaving (1) step setfilecon
23:16:36,829 INFO : moving (1) to step copylogs
23:16:36,829 DEBUG : copylogs is a direct step
23:16:36,829 INFO : Copying anaconda logs
23:16:36,831 INFO : leaving (1) step copylogs
23:16:36,831 INFO : moving (1) to step methodcomplete
23:16:36,832 DEBUG : methodcomplete is a direct step
23:16:36,832 INFO : leaving (1) step methodcomplete
23:16:36,832 INFO : moving (1) to step postscripts
23:16:36,832 DEBUG : postscripts is a direct step
23:16:36,832 INFO : Running kickstart %%post script(s)
23:16:36,872 WARNING : '/bin/sh' specified as full path

View File

@ -0,0 +1,342 @@
Feb 21 20:21:42 server2.1 [2014-02-21T20:21:42-08:00] INFO: Forking chef instance to converge...
Feb 21 20:21:51 server2.1 [2014-02-21T20:21:50-08:00] INFO: *** Chef 11.8.0 ***
Feb 21 20:21:51 server2.1 [2014-02-21T20:21:50-08:00] INFO: Chef-client pid: 1350
Feb 21 20:22:14 server2.1 [2014-02-21T20:22:14-08:00] INFO: Client key /etc/chef/client.pem is not present - registering
Feb 21 20:22:18 server2.1 [2014-02-21T20:22:18-08:00] INFO: HTTP Request Returned 404 Object Not Found: error
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:18-08:00] INFO: Setting the run_list to ["role[os-ops-database]"] from JSON
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Run List is [role[os-ops-database]]
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Run List expands to [openstack-common, openstack-common::logging, openstack-ops-database::server, openstack-ops-database::openstack-db]
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Starting Chef Run for server2_openstack_1
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Running start handlers
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Start handlers complete.
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: HTTP Request Returned 404 Object Not Found:
Feb 21 20:22:20 server2.1 [2014-02-21T20:22:20-08:00] INFO: Loading cookbooks [apt, aws, build-essential, database, mysql, openssl, openstack-common, openstack-ops-database, postgresql, xfs, yum]
Feb 21 20:22:20 server2.1 [2014-02-21T20:22:20-08:00] INFO: Storing updated cookbooks/mysql/recipes/percona_repo.rb in the cache.
Feb 21 20:22:21 server2.1 [2014-02-21T20:22:20-08:00] INFO: Storing updated cookbooks/mysql/recipes/server.rb in the cache.
Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/default.rb in the cache.
Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/ruby.rb in the cache.
Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/server_ec2.rb in the cache.
Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/client.rb in the cache.
Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/libraries/helpers.rb in the cache.
Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/attributes/percona_repo.rb in the cache.
Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/attributes/server.rb in the cache.
Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/attributes/client.rb in the cache.
Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/templates/default/my.cnf.erb in the cache.
Feb 21 20:22:23 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/templates/default/mysql-server.seed.erb in the cache.
Feb 21 20:22:23 server2.1 [2014-02-21T20:22:23-08:00] INFO: Storing updated cookbooks/mysql/templates/default/port_mysql.erb in the cache.
Feb 21 20:22:24 server2.1 [2014-02-21T20:22:24-08:00] INFO: Storing updated cookbooks/mysql/templates/default/debian.cnf.erb in the cache.
Feb 21 20:22:24 server2.1 [2014-02-21T20:22:24-08:00] INFO: Storing updated cookbooks/mysql/templates/default/grants.sql.erb in the cache.
Feb 21 20:22:25 server2.1 [2014-02-21T20:22:24-08:00] INFO: Storing updated cookbooks/mysql/templates/windows/my.cnf.erb in the cache.
Feb 21 20:22:25 server2.1 [2014-02-21T20:22:25-08:00] INFO: Storing updated cookbooks/mysql/LICENSE in the cache.
Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/CHANGELOG.md in the cache.
Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/metadata.rb in the cache.
Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/TESTING.md in the cache.
Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/Berksfile in the cache.
Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/README.md in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/CONTRIBUTING in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/mysql/.kitchen.yml in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/mysql.rb in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/ebs_backup.rb in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/default.rb in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/ebs_volume.rb in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/postgresql.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/master.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/snapshot.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_mysql_user.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_postgresql.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/resource_database_user.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_postgresql_user.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/resource_mysql_database_user.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/resource_sql_server_database_user.rb in the cache.
Feb 21 20:22:29 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_mysql.rb in the cache.
Feb 21 20:22:29 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/resource_mysql_database.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_sql_server.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/resource_database.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/resource_postgresql_database_user.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_sql_server_user.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/libraries/resource_sql_server_database.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/libraries/resource_postgresql_database.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/ebs-db-restore.sh.erb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/aws_config.erb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/chef-solo-database-snapshot.rb.erb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/ebs-backup-cron.erb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/app_grants.sql.erb in the cache.
Feb 21 20:22:31 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/s3cfg.erb in the cache.
Feb 21 20:22:31 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/chef-solo-database-snapshot.cron.erb in the cache.
Feb 21 20:22:31 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/chef-solo-database-snapshot.json.erb in the cache.
Feb 21 20:22:31 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/templates/default/ebs-db-backup.sh.erb in the cache.
Feb 21 20:22:31 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/LICENSE in the cache.
Feb 21 20:22:31 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/CHANGELOG.md in the cache.
Feb 21 20:22:32 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/metadata.rb in the cache.
Feb 21 20:22:32 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/database/README.md in the cache.
Feb 21 20:22:32 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/database/CONTRIBUTING in the cache.
Feb 21 20:22:32 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/mysql-server.rb in the cache.
Feb 21 20:22:33 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/server.rb in the cache.
Feb 21 20:22:33 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/openstack-db.rb in the cache.
Feb 21 20:22:33 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/postgresql-server.rb in the cache.
Feb 21 20:22:33 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/postgresql-client.rb in the cache.
Feb 21 20:22:33 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/mysql-client.rb in the cache.
Feb 21 20:22:33 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/client.rb in the cache.
Feb 21 20:22:34 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/attributes/default.rb in the cache.
Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/LICENSE in the cache.
Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/CHANGELOG.md in the cache.
Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/metadata.rb in the cache.
Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/README.md in the cache.
Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/xfs/recipes/default.rb in the cache.
Feb 21 20:22:35 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/xfs/LICENSE in the cache.
Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/CHANGELOG.md in the cache.
Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/metadata.rb in the cache.
Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/TESTING.md in the cache.
Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/Berksfile in the cache.
Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/README.md in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/CONTRIBUTING in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/.kitchen.yml in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/aws/resources/s3_file.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/aws/resources/elastic_lb.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/resource_tag.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/ebs_volume.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/ebs_raid.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/elastic_ip.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/s3_file.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/elastic_lb.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/resource_tag.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/ebs_volume.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/ebs_raid.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/elastic_ip.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/recipes/default.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/libraries/ec2.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/attributes/default.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/LICENSE in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/CHANGELOG.md in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/metadata.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/README.md in the cache.
Feb 21 20:22:38 server2.1 [2014-02-21T20:22:38-08:00] INFO: Storing updated cookbooks/aws/CONTRIBUTING in the cache.
Feb 21 20:22:38 server2.1 [2014-02-21T20:22:38-08:00] INFO: Storing updated cookbooks/openssl/recipes/default.rb in the cache.
Feb 21 20:22:39 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/libraries/secure_password.rb in the cache.
Feb 21 20:22:39 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/LICENSE in the cache.
Feb 21 20:22:39 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/CHANGELOG.md in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/metadata.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/README.md in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/CONTRIBUTING in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/build-essential/recipes/smartos.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/fedora.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/debian.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/rhel.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/default.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/omnios.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/mac_os_x.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/suse.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/solaris2.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/attributes/default.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/LICENSE in the cache.
Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/CHANGELOG.md in the cache.
Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/metadata.rb in the cache.
Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/TESTING.md in the cache.
Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/Berksfile in the cache.
Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/README.md in the cache.
Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/CONTRIBUTING in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/.kitchen.yml in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/resources/repository.rb in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/resources/preference.rb in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/providers/repository.rb in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/providers/preference.rb in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/recipes/default.rb in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/recipes/cacher-ng.rb in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/recipes/cacher-client.rb in the cache.
Feb 21 20:22:43 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/attributes/default.rb in the cache.
Feb 21 20:22:43 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/files/default/apt-proxy-v2.conf in the cache.
Feb 21 20:22:43 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/debian-6.0/acng.conf.erb in the cache.
Feb 21 20:22:43 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/ubuntu-10.04/acng.conf.erb in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/default/acng.conf.erb in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/default/01proxy.erb in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/LICENSE in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/CHANGELOG.md in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/metadata.rb in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/TESTING.md in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/Berksfile in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/README.md in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/CONTRIBUTING in the cache.
Feb 21 20:22:45 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/.kitchen.yml in the cache.
Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/yum_pgdg_postgresql.rb in the cache.
Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/server.rb in the cache.
Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/server_redhat.rb in the cache.
Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/config_pgtune.rb in the cache.
Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/server_debian.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/contrib.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/default.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/apt_pgdg_postgresql.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/recipes/config_initdb.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/recipes/ruby.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/recipes/client.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/libraries/default.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/attributes/default.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/server_test.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/apt_pgdg_postgresql_test.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/default_test.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/ruby_test.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/support/helpers.rb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/templates/default/postgresql.conf.erb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/templates/default/pgsql.sysconfig.erb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/templates/default/pg_hba.conf.erb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/LICENSE in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/CHANGELOG.md in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/metadata.rb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/TESTING.md in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/CONTRIBUTING.md in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/Berksfile in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/README.md in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/.kitchen.yml in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/resources/key.rb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/resources/repository.rb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/providers/key.rb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/providers/repository.rb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/recipes/test.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/recipes/epel.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/yum.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/default.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/ius.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/repoforge.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/elrepo.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/remi.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/epel.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/default.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/elrepo.rb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/remi.rb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/tests/minitest/test_test.rb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/tests/minitest/default_test.rb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/tests/minitest/support/helpers.rb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/RPM-GPG-KEY-EPEL-6 in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/templates/default/repo.erb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/templates/default/yum-rhel6.conf.erb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/templates/default/yum-rhel5.conf.erb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/LICENSE in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/CHANGELOG.md in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/metadata.rb in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/CONTRIBUTING.md in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/Berksfile in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/README.md in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/.kitchen.yml in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/openstack-common/recipes/default.rb in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/openstack-common/recipes/logging.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/recipes/databag.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/parse.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/endpoints.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/search.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/database.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/network.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/passwords.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/uri.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/attributes/default.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/templates/default/logging.conf.erb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/LICENSE in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Strainerfile in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/.tailor in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/CHANGELOG.md in the cache.
Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/metadata.rb in the cache.
Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Berksfile in the cache.
Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/README.md in the cache.
Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Gemfile.lock in the cache.
Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Gemfile in the cache.
Feb 21 20:23:05 server2.1 [2014-02-21T20:23:04-08:00] INFO: Processing package[autoconf] action install (build-essential::rhel line 38)
Feb 21 20:23:47 server2.1 [2014-02-21T20:23:46-08:00] INFO: package[autoconf] installing autoconf-2.63-5.1.el6 from base repository
Feb 21 20:25:48 server2.1 [2014-02-21T20:25:48-08:00] INFO: Processing package[bison] action install (build-essential::rhel line 38)
Feb 21 20:25:49 server2.1 [2014-02-21T20:25:49-08:00] INFO: package[bison] installing bison-2.4.1-5.el6 from base repository
Feb 21 20:26:04 server2.1 [2014-02-21T20:26:03-08:00] INFO: Processing package[flex] action install (build-essential::rhel line 38)
Feb 21 20:26:04 server2.1 [2014-02-21T20:26:03-08:00] INFO: package[flex] installing flex-2.5.35-8.el6 from base repository
Feb 21 20:26:11 server2.1 [2014-02-21T20:26:10-08:00] INFO: Processing package[gcc] action install (build-essential::rhel line 38)
Feb 21 20:26:14 server2.1 [2014-02-21T20:26:13-08:00] INFO: package[gcc] installing gcc-4.4.7-4.el6 from base repository
Feb 21 20:28:09 server2.1 [2014-02-21T20:28:09-08:00] INFO: Processing package[gcc-c++] action install (build-essential::rhel line 38)
Feb 21 20:28:11 server2.1 [2014-02-21T20:28:11-08:00] INFO: package[gcc-c++] installing gcc-c++-4.4.7-4.el6 from base repository
Feb 21 20:28:35 server2.1 [2014-02-21T20:28:35-08:00] INFO: Processing package[kernel-devel] action install (build-essential::rhel line 38)
Feb 21 20:28:38 server2.1 [2014-02-21T20:28:38-08:00] INFO: package[kernel-devel] installing kernel-devel-2.6.32-431.5.1.el6 from updates repository
Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: Processing package[make] action install (build-essential::rhel line 38)
Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: Processing package[m4] action install (build-essential::rhel line 38)
Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: Processing package[mysql] action install (mysql::client line 46)
Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: package[mysql] installing mysql-5.1.73-3.el6_5 from updates repository
Feb 21 20:30:18 server2.1 [2014-02-21T20:30:18-08:00] INFO: Processing package[mysql-devel] action install (mysql::client line 46)
Feb 21 20:30:19 server2.1 [2014-02-21T20:30:19-08:00] INFO: package[mysql-devel] installing mysql-devel-5.1.73-3.el6_5 from updates repository
Feb 21 20:31:06 server2.1 [2014-02-21T20:31:05-08:00] INFO: Processing chef_gem[mysql] action install (mysql::ruby line 31)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for directory[/var/lib/mysql] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous directory[/var/lib/mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:115:in `block in from_file'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current directory[/var/lib/mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:115:in `block in from_file'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Could not find previously defined grants.sql resource
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for service[mysql] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous service[mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:161:in `from_file'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current service[mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:225:in `from_file'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[horizon] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[horizon]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[horizon]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[ceilometer] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[ceilometer]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[ceilometer]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Processing yum_key[RPM-GPG-KEY-EPEL-6] action add (yum::epel line 22)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Adding RPM-GPG-KEY-EPEL-6 GPG key to /etc/pki/rpm-gpg/
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Processing package[gnupg2] action install (/var/chef/cache/cookbooks/yum/providers/key.rb line 32)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing execute[import-rpm-gpg-key-RPM-GPG-KEY-EPEL-6] action nothing (/var/chef/cache/cookbooks/yum/providers/key.rb line 35)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] action create (/var/chef/cache/cookbooks/yum/providers/key.rb line 66)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] created file /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] updated file contents /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] mode changed to 644
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing yum_repository[epel] action add (yum::epel line 27)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Adding epel repository to /etc/yum.repos.d/epel.repo
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] WARN: Cloning resource attributes for yum_key[RPM-GPG-KEY-EPEL-6] from prior resource (CHEF-3694)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] WARN: Previous yum_key[RPM-GPG-KEY-EPEL-6]: /var/chef/cache/cookbooks/yum/recipes/epel.rb:22:in `from_file'
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] WARN: Current yum_key[RPM-GPG-KEY-EPEL-6]: /var/chef/cache/cookbooks/yum/providers/repository.rb:85:in `repo_config'
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing yum_key[RPM-GPG-KEY-EPEL-6] action add (/var/chef/cache/cookbooks/yum/providers/repository.rb line 85)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing execute[yum-makecache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing template[/etc/yum.repos.d/epel.repo] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 100)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] created file /etc/yum.repos.d/epel.repo
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] updated file contents /etc/yum.repos.d/epel.repo
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] mode changed to 644
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] sending run action to execute[yum-makecache] (immediate)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing execute[yum-makecache] action run (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: execute[yum-makecache] ran successfully
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/epel.repo] sending create action to ruby_block[reload-internal-yum-cache] (immediate)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: ruby_block[reload-internal-yum-cache] called
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing yum_repository[openstack] action create (openstack-common::default line 103)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Adding and updating openstack repository in /etc/yum.repos.d/openstack.repo
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Cloning resource attributes for execute[yum-makecache] from prior resource (CHEF-3694)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Previous execute[yum-makecache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:88:in `repo_config'
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Current execute[yum-makecache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:88:in `repo_config'
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Cloning resource attributes for ruby_block[reload-internal-yum-cache] from prior resource (CHEF-3694)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Previous ruby_block[reload-internal-yum-cache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:93:in `repo_config'
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Current ruby_block[reload-internal-yum-cache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:93:in `repo_config'
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing execute[yum-makecache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing template[/etc/yum.repos.d/openstack.repo] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 100)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] created file /etc/yum.repos.d/openstack.repo
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] updated file contents /etc/yum.repos.d/openstack.repo
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] mode changed to 644
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] sending run action to execute[yum-makecache] (immediate)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing execute[yum-makecache] action run (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88)
Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: execute[yum-makecache] ran successfully
Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] sending create action to ruby_block[reload-internal-yum-cache] (immediate)

View File

@ -0,0 +1,212 @@
Installing libgcc-4.4.7-4.el6.x86_64
warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Installing setup-2.8.14-20.el6_4.1.noarch
Installing filesystem-2.4.30-3.el6.x86_64
Installing basesystem-10.0-4.el6.noarch
Installing ncurses-base-5.7-3.20090208.el6.x86_64
Installing kernel-firmware-2.6.32-431.el6.noarch
Installing tzdata-2013g-1.el6.noarch
Installing nss-softokn-freebl-3.14.3-9.el6.x86_64
Installing glibc-common-2.12-1.132.el6.x86_64
Installing glibc-2.12-1.132.el6.x86_64
Installing ncurses-libs-5.7-3.20090208.el6.x86_64
Installing bash-4.1.2-15.el6_4.x86_64
Installing libattr-2.4.44-7.el6.x86_64
Installing libcap-2.16-5.5.el6.x86_64
Installing zlib-1.2.3-29.el6.x86_64
Installing info-4.13a-8.el6.x86_64
Installing popt-1.13-7.el6.x86_64
Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64
Installing audit-libs-2.2-2.el6.x86_64
Installing libcom_err-1.41.12-18.el6.x86_64
Installing libacl-2.2.49-6.el6.x86_64
Installing db4-4.7.25-18.el6_4.x86_64
Installing nspr-4.10.0-1.el6.x86_64
Installing nss-util-3.15.1-3.el6.x86_64
Installing readline-6.0-4.el6.x86_64
Installing libsepol-2.0.41-4.el6.x86_64
Installing libselinux-2.0.94-5.3.el6_4.1.x86_64
Installing shadow-utils-4.1.4.2-13.el6.x86_64
Installing sed-4.2.1-10.el6.x86_64
Installing bzip2-libs-1.0.5-7.el6_0.x86_64
Installing libuuid-2.17.2-12.14.el6.x86_64
Installing libstdc++-4.4.7-4.el6.x86_64
Installing libblkid-2.17.2-12.14.el6.x86_64
Installing gawk-3.1.7-10.el6.x86_64
Installing file-libs-5.04-15.el6.x86_64
Installing libgpg-error-1.7-4.el6.x86_64
Installing dbus-libs-1.2.24-7.el6_3.x86_64
Installing libudev-147-2.51.el6.x86_64
Installing pcre-7.8-6.el6.x86_64
Installing grep-2.6.3-4.el6.x86_64
Installing lua-5.1.4-4.1.el6.x86_64
Installing sqlite-3.6.20-1.el6.x86_64
Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64
Installing libidn-1.18-2.el6.x86_64
Installing expat-2.0.1-11.el6_2.x86_64
Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64
Installing elfutils-libelf-0.152-1.el6.x86_64
Installing libgcrypt-1.4.5-11.el6_4.x86_64
Installing bzip2-1.0.5-7.el6_0.x86_64
Installing findutils-4.4.2-6.el6.x86_64
Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64
Installing checkpolicy-2.0.22-1.el6.x86_64
Installing cpio-2.10-11.el6_3.x86_64
Installing which-2.19-6.el6.x86_64
Installing libxml2-2.7.6-14.el6.x86_64
Installing libedit-2.11-4.20080712cvs.1.el6.x86_64
Installing pth-2.0.7-9.3.el6.x86_64
Installing tcp_wrappers-libs-7.6-57.el6.x86_64
Installing sysvinit-tools-2.87-5.dsf.el6.x86_64
Installing libtasn1-2.3-3.el6_2.1.x86_64
Installing p11-kit-0.18.5-2.el6.x86_64
Installing p11-kit-trust-0.18.5-2.el6.x86_64
Installing ca-certificates-2013.1.94-65.0.el6.noarch
Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64
Installing nss-softokn-3.14.3-9.el6.x86_64
Installing libnih-1.0.1-7.el6.x86_64
Installing upstart-0.6.5-12.el6_4.1.x86_64
Installing file-5.04-15.el6.x86_64
Installing gmp-4.3.1-7.el6_2.2.x86_64
Installing libusb-0.1.12-23.el6.x86_64
Installing MAKEDEV-3.24-6.el6.x86_64
Installing libutempter-1.1.5-4.1.el6.x86_64
Installing psmisc-22.6-15.el6_0.1.x86_64
Installing net-tools-1.60-110.el6_2.x86_64
Installing vim-minimal-7.2.411-1.8.el6.x86_64
Installing tar-1.23-11.el6.x86_64
Installing procps-3.2.8-25.el6.x86_64
Installing db4-utils-4.7.25-18.el6_4.x86_64
Installing e2fsprogs-libs-1.41.12-18.el6.x86_64
Installing libss-1.41.12-18.el6.x86_64
Installing pinentry-0.7.6-6.el6.x86_64
Installing binutils-2.20.51.0.2-5.36.el6.x86_64
Installing m4-1.4.13-5.el6.x86_64
Installing diffutils-2.8.1-28.el6.x86_64
Installing make-3.81-20.el6.x86_64
Installing dash-0.5.5.1-4.el6.x86_64
Installing ncurses-5.7-3.20090208.el6.x86_64
Installing groff-1.18.1.4-21.el6.x86_64
Installing less-436-10.el6.x86_64
Installing coreutils-libs-8.4-31.el6.x86_64
Installing gzip-1.3.12-19.el6_4.x86_64
Installing cracklib-2.8.16-4.el6.x86_64
Installing cracklib-dicts-2.8.16-4.el6.x86_64
Installing coreutils-8.4-31.el6.x86_64
Installing pam-1.1.1-17.el6.x86_64
Installing module-init-tools-3.9-21.el6_4.x86_64
Installing hwdata-0.233-9.1.el6.noarch
Installing redhat-logos-60.0.14-12.el6.centos.noarch
Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64
Installing libpciaccess-0.13.1-2.el6.x86_64
Installing nss-3.15.1-15.el6.x86_64
Installing nss-sysinit-3.15.1-15.el6.x86_64
Installing nss-tools-3.15.1-15.el6.x86_64
Installing openldap-2.4.23-32.el6_4.1.x86_64
Installing logrotate-3.7.8-17.el6.x86_64
Installing gdbm-1.8.0-36.el6.x86_64
Installing mingetty-1.08-5.el6.x86_64
Installing keyutils-libs-1.4-4.el6.x86_64
Installing krb5-libs-1.10.3-10.el6_4.6.x86_64
Installing openssl-1.0.1e-15.el6.x86_64
Installing libssh2-1.4.2-1.el6.x86_64
Installing libcurl-7.19.7-37.el6_4.x86_64
Installing gnupg2-2.0.14-6.el6_4.x86_64
Installing gpgme-1.1.8-3.el6.x86_64
Installing curl-7.19.7-37.el6_4.x86_64
Installing rpm-libs-4.8.0-37.el6.x86_64
Installing rpm-4.8.0-37.el6.x86_64
Installing fipscheck-lib-1.2.0-7.el6.x86_64
Installing fipscheck-1.2.0-7.el6.x86_64
Installing mysql-libs-5.1.71-1.el6.x86_64
Installing ethtool-3.5-1.el6.x86_64
Installing pciutils-libs-3.1.10-2.el6.x86_64
Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64
Installing libcap-ng-0.6.4-3.el6_0.1.x86_64
Installing libffi-3.0.5-3.2.el6.x86_64
Installing python-2.6.6-51.el6.x86_64
Installing python-libs-2.6.6-51.el6.x86_64
Installing python-pycurl-7.19.0-8.el6.x86_64
Installing python-urlgrabber-3.9.1-9.el6.noarch
Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64
Installing rpm-python-4.8.0-37.el6.x86_64
Installing python-iniparse-0.3.1-2.1.el6.noarch
Installing slang-2.2.1-1.el6.x86_64
Installing newt-0.52.11-3.el6.x86_64
Installing newt-python-0.52.11-3.el6.x86_64
Installing ustr-1.0.4-9.1.el6.x86_64
Installing libsemanage-2.0.43-4.2.el6.x86_64
Installing libaio-0.3.107-10.el6.x86_64
Installing pkgconfig-0.23-9.1.el6.x86_64
Installing gamin-0.1.10-9.el6.x86_64
Installing glib2-2.26.1-3.el6.x86_64
Installing shared-mime-info-0.70-4.el6.x86_64
Installing libuser-0.56.13-5.el6.x86_64
Installing grubby-7.0.15-5.el6.x86_64
Installing yum-metadata-parser-1.1.2-16.el6.x86_64
Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch
Installing yum-3.2.29-40.el6.centos.noarch
Installing dbus-glib-0.86-6.el6.x86_64
Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64
Installing centos-release-6-5.el6.centos.11.1.x86_64
Installing policycoreutils-2.0.83-19.39.el6.x86_64
Installing iptables-1.4.7-11.el6.x86_64
Installing iproute-2.6.32-31.el6.x86_64
Installing iputils-20071127-17.el6_4.2.x86_64
Installing util-linux-ng-2.17.2-12.14.el6.x86_64
Installing initscripts-9.03.40-2.el6.centos.x86_64
Installing udev-147-2.51.el6.x86_64
Installing device-mapper-libs-1.02.79-8.el6.x86_64
Installing device-mapper-1.02.79-8.el6.x86_64
Installing device-mapper-event-libs-1.02.79-8.el6.x86_64
Installing openssh-5.3p1-94.el6.x86_64
Installing device-mapper-event-1.02.79-8.el6.x86_64
Installing lvm2-libs-2.02.100-8.el6.x86_64
Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64
Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64
Installing kpartx-0.4.9-72.el6.x86_64
Installing libdrm-2.4.45-2.el6.x86_64
Installing plymouth-0.8.3-27.el6.centos.x86_64
Installing rsyslog-5.8.10-8.el6.x86_64
Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64
Installing postfix-2.6.6-2.2.el6_1.x86_64
Installing cronie-anacron-1.4.4-12.el6.x86_64
Installing cronie-1.4.4-12.el6.x86_64
Installing crontabs-1.10-33.el6.noarch
Installing ntpdate-4.2.6p5-1.el6.centos.x86_64
Installing iptables-ipv6-1.4.7-11.el6.x86_64
Installing selinux-policy-3.7.19-231.el6.noarch
Installing kbd-misc-1.15-11.el6.noarch
Installing kbd-1.15-11.el6.x86_64
Installing dracut-004-335.el6.noarch
Installing dracut-kernel-004-335.el6.noarch
Installing kernel-2.6.32-431.el6.x86_64
Installing fuse-2.8.3-4.el6.x86_64
Installing selinux-policy-targeted-3.7.19-231.el6.noarch
Installing system-config-firewall-base-1.2.27-5.el6.noarch
Installing ntp-4.2.6p5-1.el6.centos.x86_64
Installing device-mapper-multipath-0.4.9-72.el6.x86_64
Installing cryptsetup-luks-1.2.0-7.el6.x86_64
Installing lvm2-2.02.100-8.el6.x86_64
Installing openssh-clients-5.3p1-94.el6.x86_64
Installing openssh-server-5.3p1-94.el6.x86_64
Installing mdadm-3.2.6-7.el6.x86_64
Installing b43-openfwwf-5.2-4.el6.noarch
Installing dhclient-4.1.1-38.P1.el6.centos.x86_64
Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64
Installing passwd-0.77-4.el6_2.2.x86_64
Installing authconfig-6.1.12-13.el6.x86_64
Installing grub-0.97-83.el6.x86_64
Installing efibootmgr-0.5.4-11.el6.x86_64
Installing wget-1.12-1.8.el6.x86_64
Installing sudo-1.8.6p3-12.el6.x86_64
Installing audit-2.2-2.el6.x86_64
Installing e2fsprogs-1.41.12-18.el6.x86_64
Installing xfsprogs-3.1.1-14.el6.x86_64
Installing acl-2.2.49-6.el6.x86_64
Installing attr-2.4.44-7.el6.x86_64
Installing chef-11.8.0-1.el6.x86_64
warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
Installing bridge-utils-1.2-10.el6.x86_64
Installing rootfiles-8.1-6.1.el6.noarch
*** FINISHED INSTALLING PACKAGES ***

View File

@ -0,0 +1,286 @@
05:51:20,534 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server1.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-21-89-af
05:51:20,534 INFO : text mode forced from cmdline
05:51:20,534 DEBUG : readNetInfo /tmp/s390net not found, early return
05:51:20,534 INFO : anaconda version 13.21.215 on x86_64 starting
05:51:20,656 DEBUG : Saving module ipv6
05:51:20,656 DEBUG : Saving module iscsi_ibft
05:51:20,656 DEBUG : Saving module iscsi_boot_sysfs
05:51:20,656 DEBUG : Saving module pcspkr
05:51:20,656 DEBUG : Saving module edd
05:51:20,656 DEBUG : Saving module floppy
05:51:20,656 DEBUG : Saving module iscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi_tcp
05:51:20,656 DEBUG : Saving module libiscsi
05:51:20,656 DEBUG : Saving module scsi_transport_iscsi
05:51:20,656 DEBUG : Saving module squashfs
05:51:20,656 DEBUG : Saving module cramfs
05:51:20,656 DEBUG : probing buses
05:51:20,693 DEBUG : waiting for hardware to initialize
05:51:27,902 DEBUG : probing buses
05:51:27,925 DEBUG : waiting for hardware to initialize
05:51:47,187 INFO : getting kickstart file
05:51:47,196 INFO : eth0 has link, using it
05:51:47,208 INFO : doing kickstart... setting it up
05:51:47,208 DEBUG : activating device eth0
05:51:52,221 INFO : wait_for_iface_activation (2502): device eth0 activated
05:51:52,222 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,223 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server1.1
05:51:52,611 INFO : setting up kickstart
05:51:52,611 INFO : kickstart forcing text mode
05:51:52,611 INFO : kickstartFromUrl
05:51:52,612 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64
05:51:52,612 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2
05:51:52,616 INFO : drive status is CDS_TRAY_OPEN
05:51:52,616 ERROR : Drive tray reports open when it should be closed
05:52:07,635 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,636 DEBUG : going to set language to en_US.UTF-8
05:52:07,636 INFO : setting language to en_US.UTF-8
05:52:07,654 INFO : starting STEP_METHOD
05:52:07,654 DEBUG : loaderData->method is set, adding skipMethodDialog
05:52:07,654 DEBUG : skipMethodDialog is set
05:52:07,663 INFO : starting STEP_STAGE2
05:52:07,663 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:07,663 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img
05:52:07,780 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null)
05:52:07,780 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory
05:52:07,780 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img
05:52:07,814 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error
05:52:07,815 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,354 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img
05:52:47,354 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:52:47,403 INFO : Loading SELinux policy
05:52:48,130 INFO : getting ready to spawn shell now
05:52:48,359 INFO : Running anaconda script /usr/bin/anaconda
05:52:54,804 INFO : CentOS Linux is the highest priority installclass, using it
05:52:54,867 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.
warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning)
05:52:54,868 INFO : Running kickstart %%pre script(s)
05:52:54,868 WARNING : '/bin/sh' specified as full path
05:52:56,966 INFO : All kickstart %%pre script(s) have been run
05:52:57,017 INFO : ISCSID is /usr/sbin/iscsid
05:52:57,017 INFO : no initiator set
05:52:57,128 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path
05:52:57,137 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD!
05:52:57,138 INFO : no /etc/zfcp.conf; not configuring zfcp
05:53:00,902 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
05:53:00,903 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64']
05:53:00,903 INFO : Display mode = t
05:53:00,903 INFO : Default encoding = utf-8
05:53:01,064 INFO : Detected 2016M of memory
05:53:01,064 INFO : Swap attempt of 4032M
05:53:01,398 INFO : ISCSID is /usr/sbin/iscsid
05:53:01,399 INFO : no initiator set
05:53:05,059 INFO : setting installation environment hostname to server1
05:53:05,104 WARNING : Timezone US/Pacific set in kickstart is not valid.
05:53:05,276 INFO : Detected 2016M of memory
05:53:05,277 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead.
05:53:05,277 INFO : Swap attempt of 3276M
05:53:05,453 WARNING : step installtype does not exist
05:53:05,454 WARNING : step confirminstall does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,454 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,455 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,456 WARNING : step complete does not exist
05:53:05,457 WARNING : step complete does not exist
05:53:05,457 INFO : moving (1) to step setuptime
05:53:05,458 DEBUG : setuptime is a direct step
22:53:05,458 WARNING : '/usr/sbin/hwclock' specified as full path
22:53:06,002 INFO : leaving (1) step setuptime
22:53:06,003 INFO : moving (1) to step autopartitionexecute
22:53:06,003 DEBUG : autopartitionexecute is a direct step
22:53:06,138 INFO : leaving (1) step autopartitionexecute
22:53:06,138 INFO : moving (1) to step storagedone
22:53:06,138 DEBUG : storagedone is a direct step
22:53:06,138 INFO : leaving (1) step storagedone
22:53:06,139 INFO : moving (1) to step enablefilesystems
22:53:06,139 DEBUG : enablefilesystems is a direct step
22:53:10,959 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:53:41,215 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1
22:53:57,388 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:54:14,838 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0
22:54:21,717 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1
22:54:27,576 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2
22:54:40,058 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3
22:54:41,949 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported
22:54:41,950 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-rootvol on /mnt/sysimage as ext3 with options defaults
22:54:42,826 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults
22:54:43,148 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind
22:54:43,158 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620
22:54:43,164 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults
22:54:43,207 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-homevol on /mnt/sysimage/home as ext3 with options defaults
22:54:43,434 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,435 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults
22:54:43,439 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:54:43,496 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults
22:54:43,609 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults
22:54:43,874 DEBUG : isys.py:mount()- going to mount /dev/mapper/server1-varvol on /mnt/sysimage/var as ext3 with options defaults
22:54:44,056 INFO : leaving (1) step enablefilesystems
22:54:44,057 INFO : moving (1) to step bootloadersetup
22:54:44,057 DEBUG : bootloadersetup is a direct step
22:54:44,061 INFO : leaving (1) step bootloadersetup
22:54:44,061 INFO : moving (1) to step reposetup
22:54:44,061 DEBUG : reposetup is a direct step
22:54:56,952 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
22:54:56,953 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/
22:54:57,133 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml
22:54:57,454 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2
22:54:58,637 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml
22:54:58,971 INFO : leaving (1) step reposetup
22:54:58,971 INFO : moving (1) to step basepkgsel
22:54:58,972 DEBUG : basepkgsel is a direct step
22:54:58,986 WARNING : not adding Base group
22:54:59,388 INFO : leaving (1) step basepkgsel
22:54:59,388 INFO : moving (1) to step postselection
22:54:59,388 DEBUG : postselection is a direct step
22:54:59,390 INFO : selected kernel package for kernel
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz
22:54:59,848 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz
22:54:59,849 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz
22:54:59,850 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz
22:54:59,851 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz
22:54:59,852 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz
22:54:59,853 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz
22:54:59,854 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz
22:54:59,855 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz
22:55:07,745 INFO : leaving (1) step postselection
22:55:07,745 INFO : moving (1) to step install
22:55:07,748 INFO : leaving (1) step install
22:55:07,748 INFO : moving (1) to step preinstallconfig
22:55:07,748 DEBUG : preinstallconfig is a direct step
22:55:08,087 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults
22:55:08,091 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults
22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:55:08,102 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:55:08,118 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:55:08,122 INFO : leaving (1) step preinstallconfig
22:55:08,122 INFO : moving (1) to step installpackages
22:55:08,122 DEBUG : installpackages is a direct step
22:55:08,122 INFO : Preparing to install packages
23:17:06,152 INFO : leaving (1) step installpackages
23:17:06,153 INFO : moving (1) to step postinstallconfig
23:17:06,153 DEBUG : postinstallconfig is a direct step
23:17:06,162 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64
23:17:06,181 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo
23:17:06,183 INFO : leaving (1) step postinstallconfig
23:17:06,184 INFO : moving (1) to step writeconfig
23:17:06,184 DEBUG : writeconfig is a direct step
23:17:06,184 INFO : Writing main configuration
23:17:06,219 WARNING : '/usr/sbin/authconfig' specified as full path
23:17:11,643 WARNING : '/usr/sbin/lokkit' specified as full path
23:17:11,703 WARNING : '/usr/sbin/lokkit' specified as full path
23:17:11,885 INFO : removing libuser.conf at /tmp/libuser.WMDW9M
23:17:11,885 INFO : created new libuser.conf at /tmp/libuser.WMDW9M with instPath="/mnt/sysimage"
23:17:12,722 INFO : leaving (1) step writeconfig
23:17:12,722 INFO : moving (1) to step firstboot
23:17:12,723 DEBUG : firstboot is a direct step
23:17:12,723 INFO : leaving (1) step firstboot
23:17:12,723 INFO : moving (1) to step instbootloader
23:17:12,724 DEBUG : instbootloader is a direct step
23:17:14,664 WARNING : '/sbin/grub-install' specified as full path
23:17:15,006 WARNING : '/sbin/grub' specified as full path
23:17:16,039 INFO : leaving (1) step instbootloader
23:17:16,040 INFO : moving (1) to step reipl
23:17:16,040 DEBUG : reipl is a direct step
23:17:16,040 INFO : leaving (1) step reipl
23:17:16,040 INFO : moving (1) to step writeksconfig
23:17:16,040 DEBUG : writeksconfig is a direct step
23:17:16,041 INFO : Writing autokickstart file
23:17:16,070 INFO : leaving (1) step writeksconfig
23:17:16,071 INFO : moving (1) to step setfilecon
23:17:16,071 DEBUG : setfilecon is a direct step
23:17:16,071 INFO : setting SELinux contexts for anaconda created files
23:17:17,822 INFO : leaving (1) step setfilecon
23:17:17,822 INFO : moving (1) to step copylogs
23:17:17,822 DEBUG : copylogs is a direct step
23:17:17,822 INFO : Copying anaconda logs
23:17:17,825 INFO : leaving (1) step copylogs
23:17:17,825 INFO : moving (1) to step methodcomplete
23:17:17,825 DEBUG : methodcomplete is a direct step
23:17:17,825 INFO : leaving (1) step methodcomplete
23:17:17,826 INFO : moving (1) to step postscripts
23:17:17,826 DEBUG : postscripts is a direct step
23:17:17,826 INFO : Running kickstart %%post script(s)
23:17:17,858 WARNING : '/bin/sh' specified as full path
23:17:21,002 INFO : All kickstart %%post script(s) have been run
23:17:21,002 INFO : leaving (1) step postscripts
23:17:21,002 INFO : moving (1) to step dopostaction
23:17:21,002 DEBUG : dopostaction is a direct step
23:17:21,003 INFO : leaving (1) step dopostaction

View File

@ -0,0 +1,422 @@
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: execute[Keystone: sleep] ran successfully
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone] action create (openstack-identity::server line 73)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] owner changed to 163
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: directory[/etc/keystone] mode changed to 700
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing directory[/etc/keystone/ssl] action create (openstack-identity::server line 79)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing file[/var/lib/keystone/keystone.db] action delete (openstack-identity::server line 87)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[keystone-manage pki_setup] action run (openstack-identity::server line 91)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing template[/etc/keystone/keystone.conf] action create (openstack-identity::server line 140)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] backed up to /var/chef/backup/etc/keystone/keystone.conf.chef-20140221203911.069202
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] updated file contents /etc/keystone/keystone.conf
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] owner changed to 163
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] mode changed to 644
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: template[/etc/keystone/keystone.conf] sending restart action to service[keystone] (immediate)
Feb 21 20:39:11 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing service[keystone] action restart (openstack-identity::server line 64)
Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] restarted
Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: service[keystone] sending run action to execute[Keystone: sleep] (immediate)
Feb 21 20:39:12 server1.1 [2014-02-21T20:39:11-08:00] INFO: Processing execute[Keystone: sleep] action run (openstack-identity::server line 58)
Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: execute[Keystone: sleep] ran successfully
Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: Processing template[/etc/keystone/default_catalog.templates] action create (openstack-identity::server line 158)
Feb 21 20:39:22 server1.1 [2014-02-21T20:39:21-08:00] INFO: Processing execute[keystone-manage db_sync] action run (openstack-identity::server line 172)
Feb 21 20:39:43 server1.1 [2014-02-21T20:39:42-08:00] INFO: execute[keystone-manage db_sync] ran successfully
Feb 21 20:39:43 server1.1 [2014-02-21T20:39:42-08:00] INFO: Processing bash[bootstrap-keystone-admin] action run (openstack-identity::registration line 40)
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: bash[bootstrap-keystone-admin] ran successfully
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Processing openstack-identity_register[Register 'admin' Tenant] action create_tenant (openstack-identity::registration line 80)
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Tenant 'admin' already exists.. Not creating.
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Tenant UUID: 87cf46951cc14159bd16b68e3eb96321
Feb 21 20:39:45 server1.1 [2014-02-21T20:39:44-08:00] INFO: Processing openstack-identity_register[Register 'service' Tenant] action create_tenant (openstack-identity::registration line 80)
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Created tenant 'service'
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Processing openstack-identity_register[Register 'admin' Role] action create_role (openstack-identity::registration line 92)
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Role 'admin' already exists.. Not creating.
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Role UUID: 8070c199fc2647c9a50176d11256bebc
Feb 21 20:39:46 server1.1 [2014-02-21T20:39:45-08:00] INFO: Processing openstack-identity_register[Register 'Member' Role] action create_role (openstack-identity::registration line 92)
Feb 21 20:39:47 server1.1 [2014-02-21T20:39:46-08:00] INFO: Created Role 'Member'
Feb 21 20:39:47 server1.1 [2014-02-21T20:39:46-08:00] INFO: Processing openstack-identity_register[Register 'compute' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:39:48 server1.1 [2014-02-21T20:39:47-08:00] INFO: Created user 'service' for tenant 'service'
Feb 21 20:39:48 server1.1 [2014-02-21T20:39:47-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:39:49 server1.1 [2014-02-21T20:39:48-08:00] INFO: Granted Role 'admin' to User 'service' in Tenant 'service'
Feb 21 20:39:49 server1.1 [2014-02-21T20:39:48-08:00] INFO: Processing openstack-identity_register[Register compute Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:39:50 server1.1 [2014-02-21T20:39:49-08:00] INFO: Created service 'nova'
Feb 21 20:39:50 server1.1 [2014-02-21T20:39:49-08:00] INFO: Processing openstack-identity_register[Register compute Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:39:50 server1.1 [2014-02-21T20:39:50-08:00] INFO: Created endpoint for service type 'compute'
Feb 21 20:39:50 server1.1 [2014-02-21T20:39:50-08:00] INFO: Processing openstack-identity_register[Register 'network' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:39:51 server1.1 [2014-02-21T20:39:50-08:00] INFO: User 'service' already exists for tenant 'service'
Feb 21 20:39:51 server1.1 [2014-02-21T20:39:50-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:39:52 server1.1 [2014-02-21T20:39:51-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service'
Feb 21 20:39:52 server1.1 [2014-02-21T20:39:51-08:00] INFO: Processing openstack-identity_register[Register network Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:39:53 server1.1 [2014-02-21T20:39:52-08:00] INFO: Created service 'quantum'
Feb 21 20:39:53 server1.1 [2014-02-21T20:39:52-08:00] INFO: Processing openstack-identity_register[Register network Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Created endpoint for service type 'network'
Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Processing openstack-identity_register[Register 'volume' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: User 'service' already exists for tenant 'service'
Feb 21 20:39:54 server1.1 [2014-02-21T20:39:53-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:39:55 server1.1 [2014-02-21T20:39:54-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service'
Feb 21 20:39:55 server1.1 [2014-02-21T20:39:54-08:00] INFO: Processing openstack-identity_register[Register volume Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:39:56 server1.1 [2014-02-21T20:39:55-08:00] INFO: Created service 'cinder'
Feb 21 20:39:56 server1.1 [2014-02-21T20:39:55-08:00] INFO: Processing openstack-identity_register[Register volume Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Created endpoint for service type 'volume'
Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Processing openstack-identity_register[Register identity Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Created service 'keystone'
Feb 21 20:39:57 server1.1 [2014-02-21T20:39:56-08:00] INFO: Processing openstack-identity_register[Register identity Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:39:58 server1.1 [2014-02-21T20:39:57-08:00] INFO: Created endpoint for service type 'identity'
Feb 21 20:39:58 server1.1 [2014-02-21T20:39:57-08:00] INFO: Processing openstack-identity_register[Register 'image' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:39:59 server1.1 [2014-02-21T20:39:58-08:00] INFO: User 'service' already exists for tenant 'service'
Feb 21 20:39:59 server1.1 [2014-02-21T20:39:58-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:40:00 server1.1 [2014-02-21T20:39:59-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service'
Feb 21 20:40:00 server1.1 [2014-02-21T20:39:59-08:00] INFO: Processing openstack-identity_register[Register image Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:40:00 server1.1 [2014-02-21T20:40:00-08:00] INFO: Created service 'glance'
Feb 21 20:40:00 server1.1 [2014-02-21T20:40:00-08:00] INFO: Processing openstack-identity_register[Register image Endpoint] action create_endpoint (openstack-identity::registration line 151)
Feb 21 20:40:01 server1.1 [2014-02-21T20:40:00-08:00] INFO: Created endpoint for service type 'image'
Feb 21 20:40:01 server1.1 [2014-02-21T20:40:00-08:00] INFO: Processing openstack-identity_register[Register 'object-store' User] action create_user (openstack-identity::registration line 109)
Feb 21 20:40:02 server1.1 [2014-02-21T20:40:01-08:00] INFO: User 'service' already exists for tenant 'service'
Feb 21 20:40:02 server1.1 [2014-02-21T20:40:01-08:00] INFO: Processing openstack-identity_register[Grant admin Role to service User in service Tenant] action grant_role (openstack-identity::registration line 119)
Feb 21 20:40:03 server1.1 [2014-02-21T20:40:02-08:00] INFO: Role 'admin' already granted to User 'service' in Tenant 'service'
Feb 21 20:40:03 server1.1 [2014-02-21T20:40:02-08:00] INFO: Processing openstack-identity_register[Register object-store Service] action create_service (openstack-identity::registration line 131)
Feb 21 20:40:04 server1.1 [2014-02-21T20:40:03-08:00] INFO: Created service 'swift'
Feb 21 20:40:04 server1.1 [2014-02-21T20:40:03-08:00] INFO: Processing openstack-identity_register[Create EC2 credentials for 'admin' user] action create_ec2_credentials (openstack-identity::registration line 166)
Feb 21 20:40:05 server1.1 [2014-02-21T20:40:04-08:00] INFO: Created EC2 Credentials for User 'admin' in Tenant 'admin'
Feb 21 20:40:05 server1.1 [2014-02-21T20:40:04-08:00] INFO: Processing openstack-identity_register[Create EC2 credentials for 'monitoring' user] action create_ec2_credentials (openstack-identity::registration line 166)
Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] ERROR: Unable to create EC2 Credentials for User 'monitoring' in Tenant 'service'
Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] ERROR: Error was: Could not lookup uuid for ec2-credentials:tenant=>service. Error was 'Client' object has no attribute 'auth_user_id'
Feb 21 20:40:07 server1.1 (1)
Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] INFO: Processing package[openstack-cinder] action upgrade (openstack-block-storage::cinder-common line 26)
Feb 21 20:40:07 server1.1 [2014-02-21T20:40:06-08:00] INFO: package[openstack-cinder] installing openstack-cinder-2013.1.4-1.el6 from openstack repository
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: package[openstack-cinder] upgraded from uninstalled to 2013.1.4-1.el6
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/etc/cinder] action create (openstack-block-storage::cinder-common line 44)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] owner changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] group changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/etc/cinder] mode changed to 750
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing template[/etc/cinder/cinder.conf] action create (openstack-block-storage::cinder-common line 51)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] backed up to /var/chef/backup/etc/cinder/cinder.conf.chef-20140221204110.415861
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] updated file contents /etc/cinder/cinder.conf
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] owner changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: template[/etc/cinder/cinder.conf] mode changed to 644
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing package[python-cinderclient] action upgrade (openstack-block-storage::api line 32)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing package[MySQL-python] action upgrade (openstack-block-storage::api line 41)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/var/cache/cinder] action create (openstack-block-storage::api line 46)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] created directory /var/cache/cinder
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] owner changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] group changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/cache/cinder] mode changed to 700
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing directory[/var/lock/cinder] action create (openstack-block-storage::api line 52)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] created directory /var/lock/cinder
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] owner changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] group changed to 165
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: directory[/var/lock/cinder] mode changed to 700
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing service[cinder-api] action enable (openstack-block-storage::api line 58)
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: service[cinder-api] enabled
Feb 21 20:41:11 server1.1 [2014-02-21T20:41:10-08:00] INFO: Processing execute[cinder-manage db sync] action run (openstack-block-storage::api line 71)
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: execute[cinder-manage db sync] ran successfully
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing template[/etc/cinder/api-paste.ini] action create (openstack-block-storage::api line 73)
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] backed up to /var/chef/backup/etc/cinder/api-paste.ini.chef-20140221204130.194587
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] updated file contents /etc/cinder/api-paste.ini
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] owner changed to 165
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] mode changed to 644
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/api-paste.ini] sending restart action to service[cinder-api] (immediate)
Feb 21 20:41:30 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-api] action restart (openstack-block-storage::api line 58)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-api] restarted
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing template[/etc/cinder/policy.json] action create (openstack-block-storage::api line 88)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] backed up to /var/chef/backup/etc/cinder/policy.json.chef-20140221204130.442890
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] updated file contents /etc/cinder/policy.json
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] owner changed to 165
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] mode changed to 644
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: template[/etc/cinder/policy.json] not queuing delayed action restart on service[cinder-api] (delayed), as it's already been queued
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing package[MySQL-python] action upgrade (openstack-block-storage::scheduler line 45)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-scheduler] action enable (openstack-block-storage::scheduler line 50)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-scheduler] enabled
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing service[cinder-scheduler] action start (openstack-block-storage::scheduler line 50)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: service[cinder-scheduler] started
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: Processing package[openstack-nova-common] action upgrade (openstack-compute::nova-common line 37)
Feb 21 20:41:31 server1.1 [2014-02-21T20:41:30-08:00] INFO: package[openstack-nova-common] installing openstack-nova-common-2013.1.4-7.el6 from openstack repository
Feb 21 20:41:52 server1.1 [2014-02-21T20:41:52-08:00] INFO: package[openstack-nova-common] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:41:52 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[python-memcached] action install (openstack-compute::nova-common line 46)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/etc/nova] action create (openstack-compute::nova-common line 51)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] owner changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] group changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova] mode changed to 700
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/etc/nova/rootwrap.d] action create (openstack-compute::nova-common line 59)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] created directory /etc/nova/rootwrap.d
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/etc/nova/rootwrap.d] mode changed to 700
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/nova.conf] action create (openstack-compute::nova-common line 134)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] backed up to /var/chef/backup/etc/nova/nova.conf.chef-20140221204152.340272
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] updated file contents /etc/nova/nova.conf
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] owner changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/nova.conf] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.conf] action create (openstack-compute::nova-common line 164)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] backed up to /var/chef/backup/etc/nova/rootwrap.conf.chef-20140221204152.347747
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] updated file contents /etc/nova/rootwrap.conf
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.conf] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/api-metadata.filters] action create (openstack-compute::nova-common line 172)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] created file /etc/nova/rootwrap.d/api-metadata.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] updated file contents /etc/nova/rootwrap.d/api-metadata.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/api-metadata.filters] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/compute.filters] action create (openstack-compute::nova-common line 180)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] created file /etc/nova/rootwrap.d/compute.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] updated file contents /etc/nova/rootwrap.d/compute.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/compute.filters] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/etc/nova/rootwrap.d/network.filters] action create (openstack-compute::nova-common line 188)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] created file /etc/nova/rootwrap.d/network.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] updated file contents /etc/nova/rootwrap.d/network.filters
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/etc/nova/rootwrap.d/network.filters] mode changed to 644
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing template[/root/openrc] action create (openstack-compute::nova-common line 199)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] created file /root/openrc
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] updated file contents /root/openrc
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] owner changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] group changed to 0
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: template[/root/openrc] mode changed to 600
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing execute[enable nova login] action run (openstack-compute::nova-common line 215)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: execute[enable nova login] ran successfully
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing directory[/var/lock/nova] action create (openstack-compute::api-ec2 line 28)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] created directory /var/lock/nova
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] owner changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] group changed to 162
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: directory[/var/lock/nova] mode changed to 700
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[python-keystone] action upgrade (openstack-compute::api-ec2 line 36)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: Processing package[openstack-nova-api] action upgrade (openstack-compute::api-ec2 line 41)
Feb 21 20:41:53 server1.1 [2014-02-21T20:41:52-08:00] INFO: package[openstack-nova-api] installing openstack-nova-api-2013.1.4-7.el6 from openstack repository
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: package[openstack-nova-api] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing service[nova-api-ec2] action enable (openstack-compute::api-ec2 line 48)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: service[nova-api-ec2] enabled
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing template[/etc/nova/api-paste.ini] action create (openstack-compute::api-ec2 line 74)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] backed up to /var/chef/backup/etc/nova/api-paste.ini.chef-20140221204156.594842
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] updated file contents /etc/nova/api-paste.ini
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] owner changed to 162
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] mode changed to 644
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] not queuing delayed action restart on service[nova-api-ec2] (delayed), as it's already been queued
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: template[/etc/nova/api-paste.ini] not queuing delayed action restart on service[nova-api-os-compute] (delayed), as it's already been queued
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing directory[/var/lock/nova] action create (openstack-compute::api-os-compute line 28)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing directory[/var/cache/nova] action create (openstack-compute::api-os-compute line 34)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] created directory /var/cache/nova
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] owner changed to 162
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] group changed to 162
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: directory[/var/cache/nova] mode changed to 700
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing package[python-keystone] action upgrade (openstack-compute::api-os-compute line 40)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing package[openstack-nova-api] action upgrade (openstack-compute::api-os-compute line 45)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing service[nova-api-os-compute] action enable (openstack-compute::api-os-compute line 52)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:56-08:00] INFO: Processing service[nova-api-os-compute] action start (openstack-compute::api-os-compute line 52)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: service[nova-api-os-compute] started
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: Processing template[/etc/nova/api-paste.ini] action create (openstack-compute::api-os-compute line 78)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: Processing package[openstack-nova-cert] action upgrade (openstack-compute::nova-cert line 25)
Feb 21 20:41:57 server1.1 [2014-02-21T20:41:57-08:00] INFO: package[openstack-nova-cert] installing openstack-nova-cert-2013.1.4-7.el6 from openstack repository
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: package[openstack-nova-cert] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing service[nova-cert] action enable (openstack-compute::nova-cert line 32)
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: service[nova-cert] enabled
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing service[nova-cert] action restart (openstack-compute::nova-cert line 32)
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: service[nova-cert] restarted
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing directory[/var/lock/nova] action create (openstack-compute::scheduler line 25)
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: Processing package[openstack-nova-scheduler] action upgrade (openstack-compute::scheduler line 34)
Feb 21 20:42:05 server1.1 [2014-02-21T20:42:04-08:00] INFO: package[openstack-nova-scheduler] installing openstack-nova-scheduler-2013.1.4-7.el6 from openstack repository
Feb 21 20:42:11 server1.1 [2014-02-21T20:42:11-08:00] INFO: package[openstack-nova-scheduler] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:42:11 server1.1 [2014-02-21T20:42:11-08:00] INFO: Processing service[nova-scheduler] action enable (openstack-compute::scheduler line 41)
Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: service[nova-scheduler] enabled
Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: Processing service[nova-scheduler] action restart (openstack-compute::scheduler line 41)
Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: service[nova-scheduler] restarted
Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: Processing package[openstack-nova-novncproxy] action upgrade (openstack-compute::vncproxy line 26)
Feb 21 20:42:12 server1.1 [2014-02-21T20:42:11-08:00] INFO: package[openstack-nova-novncproxy] installing openstack-nova-novncproxy-2013.1.4-7.el6 from openstack repository
Feb 21 20:42:21 server1.1 [2014-02-21T20:42:20-08:00] INFO: package[openstack-nova-novncproxy] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:42:21 server1.1 [2014-02-21T20:42:20-08:00] INFO: Processing package[openstack-nova-console] action upgrade (openstack-compute::vncproxy line 35)
Feb 21 20:42:21 server1.1 [2014-02-21T20:42:21-08:00] INFO: package[openstack-nova-console] installing openstack-nova-console-2013.1.4-7.el6 from openstack repository
Feb 21 20:42:25 server1.1 [2014-02-21T20:42:24-08:00] INFO: package[openstack-nova-console] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:42:25 server1.1 [2014-02-21T20:42:24-08:00] INFO: Processing package[openstack-nova-console] action upgrade (openstack-compute::vncproxy line 42)
Feb 21 20:42:25 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[openstack-nova-novncproxy] action enable (openstack-compute::vncproxy line 49)
Feb 21 20:42:25 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[openstack-nova-novncproxy] enabled
Feb 21 20:42:25 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[openstack-nova-novncproxy] action start (openstack-compute::vncproxy line 49)
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[openstack-nova-novncproxy] started
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-console] action enable (openstack-compute::vncproxy line 57)
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[nova-console] enabled
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-console] action start (openstack-compute::vncproxy line 57)
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[nova-console] started
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-consoleauth] action enable (openstack-compute::vncproxy line 64)
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: service[nova-consoleauth] enabled
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:25-08:00] INFO: Processing service[nova-consoleauth] action start (openstack-compute::vncproxy line 64)
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:26-08:00] INFO: service[nova-consoleauth] started
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:26-08:00] INFO: Processing package[openstack-nova-conductor] action upgrade (openstack-compute::conductor line 26)
Feb 21 20:42:26 server1.1 [2014-02-21T20:42:26-08:00] INFO: package[openstack-nova-conductor] installing openstack-nova-conductor-2013.1.4-7.el6 from openstack repository
Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: package[openstack-nova-conductor] upgraded from uninstalled to 2013.1.4-7.el6
Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: Processing service[nova-conductor] action enable (openstack-compute::conductor line 32)
Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: service[nova-conductor] enabled
Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: Processing service[nova-conductor] action restart (openstack-compute::conductor line 32)
Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: service[nova-conductor] restarted
Feb 21 20:42:33 server1.1 [2014-02-21T20:42:32-08:00] INFO: Processing execute[nova-manage db sync] action run (openstack-compute::nova-setup line 26)
Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: execute[nova-manage db sync] ran successfully
Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: Processing package[python-quantumclient] action upgrade (openstack-compute::nova-setup line 109)
Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: Processing package[pyparsing] action upgrade (openstack-compute::nova-setup line 109)
Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: Processing cookbook_file[/usr/local/bin/add_floaters.py] action create (openstack-compute::nova-setup line 115)
Feb 21 20:46:00 server1.1 [2014-02-21T20:45:59-08:00] INFO: cookbook_file[/usr/local/bin/add_floaters.py] created file /usr/local/bin/add_floaters.py
Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: cookbook_file[/usr/local/bin/add_floaters.py] updated file contents /usr/local/bin/add_floaters.py
Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: cookbook_file[/usr/local/bin/add_floaters.py] mode changed to 755
Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: Processing package[openstack-nova-network] action purge (openstack-network::common line 38)
Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: Processing package[openstack-quantum] action install (openstack-network::common line 44)
Feb 21 20:46:00 server1.1 [2014-02-21T20:46:00-08:00] INFO: package[openstack-quantum] installing openstack-quantum-2013.1.4-4.el6 from openstack repository
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing directory[/etc/quantum/plugins] action create (openstack-network::common line 49)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/etc/quantum/plugins] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/etc/quantum/plugins] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/etc/quantum/plugins] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing directory[/var/cache/quantum] action create (openstack-network::common line 57)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] created directory /var/cache/quantum
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: directory[/var/cache/quantum] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing directory[/var/cache/quantum] action create (openstack-network::common line 64)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing remote_directory[/etc/quantum/rootwrap.d] action create (openstack-network::common line 74)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: remote_directory[/etc/quantum/rootwrap.d] created directory /etc/quantum/rootwrap.d
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] created file /etc/quantum/rootwrap.d/ryu-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] updated file contents /etc/quantum/rootwrap.d/ryu-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/ryu-plugin.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] created file /etc/quantum/rootwrap.d/openvswitch-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] updated file contents /etc/quantum/rootwrap.d/openvswitch-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/openvswitch-plugin.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] created file /etc/quantum/rootwrap.d/nec-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] updated file contents /etc/quantum/rootwrap.d/nec-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/nec-plugin.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] created file /etc/quantum/rootwrap.d/linuxbridge-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] updated file contents /etc/quantum/rootwrap.d/linuxbridge-plugin.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/linuxbridge-plugin.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] created file /etc/quantum/rootwrap.d/lbaas-haproxy.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] updated file contents /etc/quantum/rootwrap.d/lbaas-haproxy.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/lbaas-haproxy.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/l3.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] created file /etc/quantum/rootwrap.d/l3.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] updated file contents /etc/quantum/rootwrap.d/l3.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/l3.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] created file /etc/quantum/rootwrap.d/iptables-firewall.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] updated file contents /etc/quantum/rootwrap.d/iptables-firewall.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/iptables-firewall.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] created file /etc/quantum/rootwrap.d/dhcp.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] updated file contents /etc/quantum/rootwrap.d/dhcp.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/dhcp.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing cookbook_file[/etc/quantum/rootwrap.d/debug.filters] action create (dynamically defined)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] created file /etc/quantum/rootwrap.d/debug.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] updated file contents /etc/quantum/rootwrap.d/debug.filters
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: cookbook_file[/etc/quantum/rootwrap.d/debug.filters] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/rootwrap.conf] action create (openstack-network::common line 81)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] backed up to /var/chef/backup/etc/quantum/rootwrap.conf.chef-20140221204614.967634
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] updated file contents /etc/quantum/rootwrap.conf
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/rootwrap.conf] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/policy.json] action create (openstack-network::common line 88)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] backed up to /var/chef/backup/etc/quantum/policy.json.chef-20140221204614.975067
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] updated file contents /etc/quantum/policy.json
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/policy.json] mode changed to 644
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing execute[delete_auto_qpid] action nothing (openstack-network::common line 103)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing service[quantum-server] action nothing (openstack-network::common line 157)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/quantum.conf] action create (openstack-network::common line 165)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] backed up to /var/chef/backup/etc/quantum/quantum.conf.chef-20140221204614.991537
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] updated file contents /etc/quantum/quantum.conf
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] mode changed to 644
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/quantum.conf] not queuing delayed action restart on service[quantum-server] (delayed), as it's already been queued
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: Processing template[/etc/quantum/api-paste.ini] action create (openstack-network::common line 186)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/api-paste.ini] backed up to /var/chef/backup/etc/quantum/api-paste.ini.chef-20140221204614.998443
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:14-08:00] INFO: template[/etc/quantum/api-paste.ini] updated file contents /etc/quantum/api-paste.ini
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/api-paste.ini] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/api-paste.ini] mode changed to 644
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/api-paste.ini] not queuing delayed action restart on service[quantum-server] (delayed), as it's already been queued
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing directory[/etc/quantum/plugins/openvswitch] action create (openstack-network::common line 201)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] created directory /etc/quantum/plugins/openvswitch
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: directory[/etc/quantum/plugins/openvswitch] mode changed to 700
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing service[quantum-plugin-openvswitch-agent] action nothing (openstack-network::common line 341)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] action create (openstack-network::common line 346)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] created file /etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] updated file contents /etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] owner changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] group changed to 164
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] mode changed to 644
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: template[/etc/quantum/plugins/openvswitch/ovs_quantum_plugin.ini] not queuing delayed action restart on service[quantum-server] (delayed), as it's already been queued
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing template[/etc/default/quantum-server] action create (openstack-network::common line 395)
Feb 21 20:46:15 server1.1 [2014-02-21T20:46:15-08:00] INFO: Processing package[openstack-quantum-openvswitch] action install (openstack-network::server line 42)
Feb 21 20:46:16 server1.1 [2014-02-21T20:46:15-08:00] INFO: package[openstack-quantum-openvswitch] installing openstack-quantum-openvswitch-2013.1.4-4.el6 from openstack repository
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing directory[/var/cache/quantum/api] action create (openstack-network::server line 49)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: directory[/var/cache/quantum/api] created directory /var/cache/quantum/api
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: directory[/var/cache/quantum/api] owner changed to 164
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: directory[/var/cache/quantum/api] group changed to 164
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing template[/etc/init.d/quantum-server] action create (openstack-network::server line 55)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: template[/etc/init.d/quantum-server] backed up to /var/chef/backup/etc/init.d/quantum-server.chef-20140221204621.125222
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: template[/etc/init.d/quantum-server] updated file contents /etc/init.d/quantum-server
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing service[quantum-server] action enable (openstack-network::server line 63)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: service[quantum-server] enabled
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing service[quantum-server] action restart (openstack-network::server line 63)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: service[quantum-server] restarted
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing cookbook_file[quantum-ha-tool] action create (openstack-network::server line 69)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] created file /usr/local/bin/quantum-ha-tool.py
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] updated file contents /usr/local/bin/quantum-ha-tool.py
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] owner changed to 0
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] group changed to 0
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: cookbook_file[quantum-ha-tool] mode changed to 755
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing template[/etc/sysconfig/quantum] action create (openstack-network::server line 98)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: template[/etc/httpd/mods-available/deflate.conf] sending restart action to service[apache2] (delayed)
Feb 21 20:46:21 server1.1 [2014-02-21T20:46:21-08:00] INFO: Processing service[apache2] action restart (apache2::default line 221)
Feb 21 20:46:23 server1.1 [2014-02-21T20:46:22-08:00] INFO: service[apache2] restarted
Feb 21 20:46:23 server1.1 [2014-02-21T20:46:22-08:00] INFO: [template[/etc/cinder/cinder.conf]] sending restart action to service[cinder-api] (delayed)
Feb 21 20:46:23 server1.1 [2014-02-21T20:46:22-08:00] INFO: Processing service[cinder-api] action restart (openstack-block-storage::api line 58)
Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: service[cinder-api] restarted
Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: [template[/etc/cinder/cinder.conf]] sending restart action to service[cinder-scheduler] (delayed)
Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: Processing service[cinder-scheduler] action restart (openstack-block-storage::scheduler line 50)
Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: service[cinder-scheduler] restarted
Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-api-ec2] (delayed)
Feb 21 20:46:24 server1.1 [2014-02-21T20:46:24-08:00] INFO: Processing service[nova-api-ec2] action restart (openstack-compute::api-ec2 line 48)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: service[nova-api-ec2] restarted
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-api-os-compute] (delayed)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: Processing service[nova-api-os-compute] action restart (openstack-compute::api-os-compute line 52)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: service[nova-api-os-compute] restarted
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-cert] (delayed)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:25-08:00] INFO: Processing service[nova-cert] action restart (openstack-compute::nova-cert line 32)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: service[nova-cert] restarted
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-scheduler] (delayed)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: Processing service[nova-scheduler] action restart (openstack-compute::scheduler line 41)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: service[nova-scheduler] restarted
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[openstack-nova-novncproxy] (delayed)
Feb 21 20:46:26 server1.1 [2014-02-21T20:46:26-08:00] INFO: Processing service[openstack-nova-novncproxy] action restart (openstack-compute::vncproxy line 49)
Feb 21 20:46:27 server1.1 [2014-02-21T20:46:26-08:00] INFO: service[openstack-nova-novncproxy] restarted
Feb 21 20:46:27 server1.1 [2014-02-21T20:46:26-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-console] (delayed)
Feb 21 20:46:27 server1.1 [2014-02-21T20:46:26-08:00] INFO: Processing service[nova-console] action restart (openstack-compute::vncproxy line 57)
Feb 21 20:46:27 server1.1 [2014-02-21T20:46:27-08:00] INFO: service[nova-console] restarted
Feb 21 20:46:27 server1.1 [2014-02-21T20:46:27-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-consoleauth] (delayed)
Feb 21 20:46:27 server1.1 [2014-02-21T20:46:27-08:00] INFO: Processing service[nova-consoleauth] action restart (openstack-compute::vncproxy line 64)
Feb 21 20:46:28 server1.1 [2014-02-21T20:46:27-08:00] INFO: service[nova-consoleauth] restarted
Feb 21 20:46:28 server1.1 [2014-02-21T20:46:27-08:00] INFO: template[/etc/nova/nova.conf] sending restart action to service[nova-conductor] (delayed)
Feb 21 20:46:28 server1.1 [2014-02-21T20:46:27-08:00] INFO: Processing service[nova-conductor] action restart (openstack-compute::conductor line 32)
Feb 21 20:46:28 server1.1 [2014-02-21T20:46:28-08:00] INFO: service[nova-conductor] restarted
Feb 21 20:46:28 server1.1 [2014-02-21T20:46:28-08:00] INFO: template[/etc/quantum/policy.json] sending restart action to service[quantum-server] (delayed)
Feb 21 20:46:28 server1.1 [2014-02-21T20:46:28-08:00] INFO: Processing service[quantum-server] action restart (openstack-network::server line 63)
Feb 21 20:46:29 server1.1 [2014-02-21T20:46:29-08:00] INFO: service[quantum-server] restarted
Feb 21 20:46:29 server1.1 [2014-02-21T20:46:29-08:00] INFO: Chef Run complete in 1449.433415826 seconds
Feb 21 20:46:30 server1.1 [2014-02-21T20:46:30-08:00] INFO: Running report handlers
Feb 21 20:46:30 server1.1 [2014-02-21T20:46:30-08:00] INFO: Report handlers complete

View File

@ -0,0 +1,212 @@
Installing libgcc-4.4.7-4.el6.x86_64
warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Installing setup-2.8.14-20.el6_4.1.noarch
Installing filesystem-2.4.30-3.el6.x86_64
Installing basesystem-10.0-4.el6.noarch
Installing ncurses-base-5.7-3.20090208.el6.x86_64
Installing kernel-firmware-2.6.32-431.el6.noarch
Installing tzdata-2013g-1.el6.noarch
Installing nss-softokn-freebl-3.14.3-9.el6.x86_64
Installing glibc-common-2.12-1.132.el6.x86_64
Installing glibc-2.12-1.132.el6.x86_64
Installing ncurses-libs-5.7-3.20090208.el6.x86_64
Installing bash-4.1.2-15.el6_4.x86_64
Installing libattr-2.4.44-7.el6.x86_64
Installing libcap-2.16-5.5.el6.x86_64
Installing zlib-1.2.3-29.el6.x86_64
Installing info-4.13a-8.el6.x86_64
Installing popt-1.13-7.el6.x86_64
Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64
Installing audit-libs-2.2-2.el6.x86_64
Installing libcom_err-1.41.12-18.el6.x86_64
Installing libacl-2.2.49-6.el6.x86_64
Installing db4-4.7.25-18.el6_4.x86_64
Installing nspr-4.10.0-1.el6.x86_64
Installing nss-util-3.15.1-3.el6.x86_64
Installing readline-6.0-4.el6.x86_64
Installing libsepol-2.0.41-4.el6.x86_64
Installing libselinux-2.0.94-5.3.el6_4.1.x86_64
Installing shadow-utils-4.1.4.2-13.el6.x86_64
Installing sed-4.2.1-10.el6.x86_64
Installing bzip2-libs-1.0.5-7.el6_0.x86_64
Installing libuuid-2.17.2-12.14.el6.x86_64
Installing libstdc++-4.4.7-4.el6.x86_64
Installing libblkid-2.17.2-12.14.el6.x86_64
Installing gawk-3.1.7-10.el6.x86_64
Installing file-libs-5.04-15.el6.x86_64
Installing libgpg-error-1.7-4.el6.x86_64
Installing dbus-libs-1.2.24-7.el6_3.x86_64
Installing libudev-147-2.51.el6.x86_64
Installing pcre-7.8-6.el6.x86_64
Installing grep-2.6.3-4.el6.x86_64
Installing lua-5.1.4-4.1.el6.x86_64
Installing sqlite-3.6.20-1.el6.x86_64
Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64
Installing libidn-1.18-2.el6.x86_64
Installing expat-2.0.1-11.el6_2.x86_64
Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64
Installing elfutils-libelf-0.152-1.el6.x86_64
Installing libgcrypt-1.4.5-11.el6_4.x86_64
Installing bzip2-1.0.5-7.el6_0.x86_64
Installing findutils-4.4.2-6.el6.x86_64
Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64
Installing checkpolicy-2.0.22-1.el6.x86_64
Installing cpio-2.10-11.el6_3.x86_64
Installing which-2.19-6.el6.x86_64
Installing libxml2-2.7.6-14.el6.x86_64
Installing libedit-2.11-4.20080712cvs.1.el6.x86_64
Installing pth-2.0.7-9.3.el6.x86_64
Installing tcp_wrappers-libs-7.6-57.el6.x86_64
Installing sysvinit-tools-2.87-5.dsf.el6.x86_64
Installing libtasn1-2.3-3.el6_2.1.x86_64
Installing p11-kit-0.18.5-2.el6.x86_64
Installing p11-kit-trust-0.18.5-2.el6.x86_64
Installing ca-certificates-2013.1.94-65.0.el6.noarch
Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64
Installing nss-softokn-3.14.3-9.el6.x86_64
Installing libnih-1.0.1-7.el6.x86_64
Installing upstart-0.6.5-12.el6_4.1.x86_64
Installing file-5.04-15.el6.x86_64
Installing gmp-4.3.1-7.el6_2.2.x86_64
Installing libusb-0.1.12-23.el6.x86_64
Installing MAKEDEV-3.24-6.el6.x86_64
Installing libutempter-1.1.5-4.1.el6.x86_64
Installing psmisc-22.6-15.el6_0.1.x86_64
Installing net-tools-1.60-110.el6_2.x86_64
Installing vim-minimal-7.2.411-1.8.el6.x86_64
Installing tar-1.23-11.el6.x86_64
Installing procps-3.2.8-25.el6.x86_64
Installing db4-utils-4.7.25-18.el6_4.x86_64
Installing e2fsprogs-libs-1.41.12-18.el6.x86_64
Installing libss-1.41.12-18.el6.x86_64
Installing pinentry-0.7.6-6.el6.x86_64
Installing binutils-2.20.51.0.2-5.36.el6.x86_64
Installing m4-1.4.13-5.el6.x86_64
Installing diffutils-2.8.1-28.el6.x86_64
Installing make-3.81-20.el6.x86_64
Installing dash-0.5.5.1-4.el6.x86_64
Installing ncurses-5.7-3.20090208.el6.x86_64
Installing groff-1.18.1.4-21.el6.x86_64
Installing less-436-10.el6.x86_64
Installing coreutils-libs-8.4-31.el6.x86_64
Installing gzip-1.3.12-19.el6_4.x86_64
Installing cracklib-2.8.16-4.el6.x86_64
Installing cracklib-dicts-2.8.16-4.el6.x86_64
Installing coreutils-8.4-31.el6.x86_64
Installing pam-1.1.1-17.el6.x86_64
Installing module-init-tools-3.9-21.el6_4.x86_64
Installing hwdata-0.233-9.1.el6.noarch
Installing redhat-logos-60.0.14-12.el6.centos.noarch
Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64
Installing libpciaccess-0.13.1-2.el6.x86_64
Installing nss-3.15.1-15.el6.x86_64
Installing nss-sysinit-3.15.1-15.el6.x86_64
Installing nss-tools-3.15.1-15.el6.x86_64
Installing openldap-2.4.23-32.el6_4.1.x86_64
Installing logrotate-3.7.8-17.el6.x86_64
Installing gdbm-1.8.0-36.el6.x86_64
Installing mingetty-1.08-5.el6.x86_64
Installing keyutils-libs-1.4-4.el6.x86_64
Installing krb5-libs-1.10.3-10.el6_4.6.x86_64
Installing openssl-1.0.1e-15.el6.x86_64
Installing libssh2-1.4.2-1.el6.x86_64
Installing libcurl-7.19.7-37.el6_4.x86_64
Installing gnupg2-2.0.14-6.el6_4.x86_64
Installing gpgme-1.1.8-3.el6.x86_64
Installing curl-7.19.7-37.el6_4.x86_64
Installing rpm-libs-4.8.0-37.el6.x86_64
Installing rpm-4.8.0-37.el6.x86_64
Installing fipscheck-lib-1.2.0-7.el6.x86_64
Installing fipscheck-1.2.0-7.el6.x86_64
Installing mysql-libs-5.1.71-1.el6.x86_64
Installing ethtool-3.5-1.el6.x86_64
Installing pciutils-libs-3.1.10-2.el6.x86_64
Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64
Installing libcap-ng-0.6.4-3.el6_0.1.x86_64
Installing libffi-3.0.5-3.2.el6.x86_64
Installing python-2.6.6-51.el6.x86_64
Installing python-libs-2.6.6-51.el6.x86_64
Installing python-pycurl-7.19.0-8.el6.x86_64
Installing python-urlgrabber-3.9.1-9.el6.noarch
Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64
Installing rpm-python-4.8.0-37.el6.x86_64
Installing python-iniparse-0.3.1-2.1.el6.noarch
Installing slang-2.2.1-1.el6.x86_64
Installing newt-0.52.11-3.el6.x86_64
Installing newt-python-0.52.11-3.el6.x86_64
Installing ustr-1.0.4-9.1.el6.x86_64
Installing libsemanage-2.0.43-4.2.el6.x86_64
Installing libaio-0.3.107-10.el6.x86_64
Installing pkgconfig-0.23-9.1.el6.x86_64
Installing gamin-0.1.10-9.el6.x86_64
Installing glib2-2.26.1-3.el6.x86_64
Installing shared-mime-info-0.70-4.el6.x86_64
Installing libuser-0.56.13-5.el6.x86_64
Installing grubby-7.0.15-5.el6.x86_64
Installing yum-metadata-parser-1.1.2-16.el6.x86_64
Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch
Installing yum-3.2.29-40.el6.centos.noarch
Installing dbus-glib-0.86-6.el6.x86_64
Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64
Installing centos-release-6-5.el6.centos.11.1.x86_64
Installing policycoreutils-2.0.83-19.39.el6.x86_64
Installing iptables-1.4.7-11.el6.x86_64
Installing iproute-2.6.32-31.el6.x86_64
Installing iputils-20071127-17.el6_4.2.x86_64
Installing util-linux-ng-2.17.2-12.14.el6.x86_64
Installing initscripts-9.03.40-2.el6.centos.x86_64
Installing udev-147-2.51.el6.x86_64
Installing device-mapper-libs-1.02.79-8.el6.x86_64
Installing device-mapper-1.02.79-8.el6.x86_64
Installing device-mapper-event-libs-1.02.79-8.el6.x86_64
Installing openssh-5.3p1-94.el6.x86_64
Installing device-mapper-event-1.02.79-8.el6.x86_64
Installing lvm2-libs-2.02.100-8.el6.x86_64
Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64
Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64
Installing kpartx-0.4.9-72.el6.x86_64
Installing libdrm-2.4.45-2.el6.x86_64
Installing plymouth-0.8.3-27.el6.centos.x86_64
Installing rsyslog-5.8.10-8.el6.x86_64
Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64
Installing postfix-2.6.6-2.2.el6_1.x86_64
Installing cronie-anacron-1.4.4-12.el6.x86_64
Installing cronie-1.4.4-12.el6.x86_64
Installing crontabs-1.10-33.el6.noarch
Installing ntpdate-4.2.6p5-1.el6.centos.x86_64
Installing iptables-ipv6-1.4.7-11.el6.x86_64
Installing selinux-policy-3.7.19-231.el6.noarch
Installing kbd-misc-1.15-11.el6.noarch
Installing kbd-1.15-11.el6.x86_64
Installing dracut-004-335.el6.noarch
Installing dracut-kernel-004-335.el6.noarch
Installing kernel-2.6.32-431.el6.x86_64
Installing fuse-2.8.3-4.el6.x86_64
Installing selinux-policy-targeted-3.7.19-231.el6.noarch
Installing system-config-firewall-base-1.2.27-5.el6.noarch
Installing ntp-4.2.6p5-1.el6.centos.x86_64
Installing device-mapper-multipath-0.4.9-72.el6.x86_64
Installing cryptsetup-luks-1.2.0-7.el6.x86_64
Installing lvm2-2.02.100-8.el6.x86_64
Installing openssh-clients-5.3p1-94.el6.x86_64
Installing openssh-server-5.3p1-94.el6.x86_64
Installing mdadm-3.2.6-7.el6.x86_64
Installing b43-openfwwf-5.2-4.el6.noarch
Installing dhclient-4.1.1-38.P1.el6.centos.x86_64
Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64
Installing passwd-0.77-4.el6_2.2.x86_64
Installing authconfig-6.1.12-13.el6.x86_64
Installing grub-0.97-83.el6.x86_64
Installing efibootmgr-0.5.4-11.el6.x86_64
Installing wget-1.12-1.8.el6.x86_64
Installing sudo-1.8.6p3-12.el6.x86_64
Installing audit-2.2-2.el6.x86_64
Installing e2fsprogs-1.41.12-18.el6.x86_64
Installing xfsprogs-3.1.1-14.el6.x86_64
Installing acl-2.2.49-6.el6.x86_64
Installing attr-2.4.44-7.el6.x86_64
Installing chef-11.8.0-1.el6.x86_64
warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
Installing bridge-utils-1.2-10.el6.x86_64
Installing rootfiles-8.1-6.1.el6.noarch
*** FINISHED INSTALLING PACKAGES ***

View File

@ -0,0 +1,280 @@
05:50:22,531 INFO : kernel command line: initrd=/images/CentOS-6.5-x86_64/initrd.img ksdevice=bootif lang= kssendmac text ks=http://10.145.88.211/cblr/svc/op/ks/system/server2.1 BOOT_IMAGE=/images/CentOS-6.5-x86_64/vmlinuz BOOTIF=01-00-0c-29-5c-6a-b8
05:50:22,531 INFO : text mode forced from cmdline
05:50:22,531 DEBUG : readNetInfo /tmp/s390net not found, early return
05:50:22,531 INFO : anaconda version 13.21.215 on x86_64 starting
05:50:22,649 DEBUG : Saving module ipv6
05:50:22,649 DEBUG : Saving module iscsi_ibft
05:50:22,649 DEBUG : Saving module iscsi_boot_sysfs
05:50:22,649 DEBUG : Saving module pcspkr
05:50:22,649 DEBUG : Saving module edd
05:50:22,649 DEBUG : Saving module floppy
05:50:22,649 DEBUG : Saving module iscsi_tcp
05:50:22,649 DEBUG : Saving module libiscsi_tcp
05:50:22,649 DEBUG : Saving module libiscsi
05:50:22,649 DEBUG : Saving module scsi_transport_iscsi
05:50:22,649 DEBUG : Saving module squashfs
05:50:22,649 DEBUG : Saving module cramfs
05:50:22,649 DEBUG : probing buses
05:50:22,673 DEBUG : waiting for hardware to initialize
05:50:28,619 DEBUG : probing buses
05:50:28,644 DEBUG : waiting for hardware to initialize
05:50:32,015 INFO : getting kickstart file
05:50:32,022 INFO : eth0 has link, using it
05:50:32,033 INFO : doing kickstart... setting it up
05:50:32,034 DEBUG : activating device eth0
05:50:40,048 INFO : wait_for_iface_activation (2502): device eth0 activated
05:50:40,048 INFO : file location: http://10.145.88.211/cblr/svc/op/ks/system/server2.1
05:50:40,049 INFO : transferring http://10.145.88.211/cblr/svc/op/ks/system/server2.1
05:50:40,134 INFO : setting up kickstart
05:50:40,134 INFO : kickstart forcing text mode
05:50:40,134 INFO : kickstartFromUrl
05:50:40,134 INFO : results of url ks, url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64
05:50:40,135 INFO : trying to mount CD device /dev/sr0 on /mnt/stage2
05:50:40,137 INFO : drive status is CDS_TRAY_OPEN
05:50:40,137 ERROR : Drive tray reports open when it should be closed
05:50:55,155 INFO : no stage2= given, assuming http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:50:55,156 DEBUG : going to set language to en_US.UTF-8
05:50:55,156 INFO : setting language to en_US.UTF-8
05:50:55,169 INFO : starting STEP_METHOD
05:50:55,169 DEBUG : loaderData->method is set, adding skipMethodDialog
05:50:55,169 DEBUG : skipMethodDialog is set
05:50:55,176 INFO : starting STEP_STAGE2
05:50:55,176 INFO : URL_STAGE_MAIN: url is http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:50:55,176 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/updates.img
05:50:56,174 ERROR : failed to mount loopback device /dev/loop7 on /tmp/update-disk as /tmp/updates-disk.img: (null)
05:50:56,175 ERROR : Error mounting /dev/loop7 on /tmp/update-disk: No such file or directory
05:50:56,175 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img
05:50:57,459 ERROR : Error downloading http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/product.img: HTTP response code said error
05:50:57,459 INFO : transferring http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:51:46,964 INFO : mounted loopback device /mnt/runtime on /dev/loop0 as /tmp/install.img
05:51:46,964 INFO : got stage2 at url http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img
05:51:47,009 INFO : Loading SELinux policy
05:51:47,753 INFO : getting ready to spawn shell now
05:51:47,973 INFO : Running anaconda script /usr/bin/anaconda
05:51:52,842 INFO : CentOS Linux is the highest priority installclass, using it
05:51:52,887 WARNING : /usr/lib/python2.6/site-packages/pykickstart/parser.py:713: DeprecationWarning: Script does not end with %end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.
warnings.warn(_("%s does not end with %%end. This syntax has been deprecated. It may be removed from future releases, which will result in a fatal error from kickstart. Please modify your kickstart file to use this updated syntax.") % _("Script"), DeprecationWarning)
05:51:52,888 INFO : Running kickstart %%pre script(s)
05:51:52,888 WARNING : '/bin/sh' specified as full path
05:51:54,265 INFO : All kickstart %%pre script(s) have been run
05:51:54,314 INFO : ISCSID is /usr/sbin/iscsid
05:51:54,314 INFO : no initiator set
05:51:54,416 WARNING : '/usr/libexec/fcoe/fcoe_edd.sh' specified as full path
05:51:54,425 INFO : No FCoE EDD info found: No FCoE boot disk information is found in EDD!
05:51:54,425 INFO : no /etc/zfcp.conf; not configuring zfcp
05:51:59,033 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage"
05:51:59,033 INFO : anaconda called with cmdline = ['/usr/bin/anaconda', '--stage2', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/images/install.img', '--kickstart', '/tmp/ks.cfg', '-T', '--selinux', '--lang', 'en_US', '--keymap', 'us', '--repo', 'http://10.145.88.211/cblr/links/CentOS-6.5-x86_64']
05:51:59,033 INFO : Display mode = t
05:51:59,034 INFO : Default encoding = utf-8
05:51:59,193 INFO : Detected 2016M of memory
05:51:59,193 INFO : Swap attempt of 4032M
05:51:59,528 INFO : ISCSID is /usr/sbin/iscsid
05:51:59,528 INFO : no initiator set
05:52:00,372 INFO : setting installation environment hostname to server2
05:52:00,415 WARNING : Timezone US/Pacific set in kickstart is not valid.
05:52:00,541 INFO : Detected 2016M of memory
05:52:00,541 INFO : Suggested swap size (4032 M) exceeds 10 % of disk space, using 10 % of disk space (3276 M) instead.
05:52:00,541 INFO : Swap attempt of 3276M
05:52:00,698 WARNING : step installtype does not exist
05:52:00,699 WARNING : step confirminstall does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,699 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,700 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,701 WARNING : step complete does not exist
05:52:00,702 INFO : moving (1) to step setuptime
05:52:00,702 DEBUG : setuptime is a direct step
22:52:00,703 WARNING : '/usr/sbin/hwclock' specified as full path
22:52:02,003 INFO : leaving (1) step setuptime
22:52:02,003 INFO : moving (1) to step autopartitionexecute
22:52:02,003 DEBUG : autopartitionexecute is a direct step
22:52:02,141 INFO : leaving (1) step autopartitionexecute
22:52:02,141 INFO : moving (1) to step storagedone
22:52:02,141 DEBUG : storagedone is a direct step
22:52:02,142 INFO : leaving (1) step storagedone
22:52:02,142 INFO : moving (1) to step enablefilesystems
22:52:02,142 DEBUG : enablefilesystems is a direct step
22:52:08,928 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda1
22:52:12,407 DEBUG : notifying kernel of 'change' event on device /sys/class/block/sda3
22:52:25,536 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-0
22:52:30,102 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-1
22:52:35,181 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-2
22:52:40,809 DEBUG : notifying kernel of 'change' event on device /sys/class/block/dm-3
22:52:44,576 INFO : failed to set SELinux context for /mnt/sysimage: [Errno 95] Operation not supported
22:52:44,576 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-rootvol on /mnt/sysimage as ext3 with options defaults
22:52:45,082 DEBUG : isys.py:mount()- going to mount /dev/sda1 on /mnt/sysimage/boot as ext3 with options defaults
22:52:45,230 DEBUG : isys.py:mount()- going to mount //dev on /mnt/sysimage/dev as bind with options defaults,bind
22:52:45,240 DEBUG : isys.py:mount()- going to mount devpts on /mnt/sysimage/dev/pts as devpts with options gid=5,mode=620
22:52:45,247 DEBUG : isys.py:mount()- going to mount tmpfs on /mnt/sysimage/dev/shm as tmpfs with options defaults
22:52:45,333 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-homevol on /mnt/sysimage/home as ext3 with options defaults
22:52:45,482 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:52:45,483 DEBUG : isys.py:mount()- going to mount proc on /mnt/sysimage/proc as proc with options defaults
22:52:45,487 INFO : failed to get default SELinux context for /proc: [Errno 2] No such file or directory
22:52:45,534 DEBUG : isys.py:mount()- going to mount sysfs on /mnt/sysimage/sys as sysfs with options defaults
22:52:45,571 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-tmpvol on /mnt/sysimage/tmp as ext3 with options defaults
22:52:45,795 DEBUG : isys.py:mount()- going to mount /dev/mapper/server2-varvol on /mnt/sysimage/var as ext3 with options defaults
22:52:45,955 INFO : leaving (1) step enablefilesystems
22:52:45,955 INFO : moving (1) to step bootloadersetup
22:52:45,956 DEBUG : bootloadersetup is a direct step
22:52:45,960 INFO : leaving (1) step bootloadersetup
22:52:45,960 INFO : moving (1) to step reposetup
22:52:45,960 DEBUG : reposetup is a direct step
22:52:47,076 ERROR : Error downloading treeinfo file: [Errno 14] PYCURL ERROR 22 - "The requested URL returned error: 404 Not Found"
22:52:47,077 INFO : added repository ppa_repo with URL http://10.145.88.211:80/cobbler/repo_mirror/ppa_repo/
22:52:47,296 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/repomd.xml
22:52:47,358 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/0e371b19e547b9d7a7e8acc4b8c0c7c074509d33653cfaef9e8f4fd1d62d95de-primary.sqlite.bz2
22:52:47,499 DEBUG : Grabbing http://10.145.88.211/cblr/links/CentOS-6.5-x86_64/repodata/34bae2d3c9c78e04ed2429923bc095005af1b166d1a354422c4c04274bae0f59-c6-minimal-x86_64.xml
22:52:47,629 INFO : leaving (1) step reposetup
22:52:47,629 INFO : moving (1) to step basepkgsel
22:52:47,629 DEBUG : basepkgsel is a direct step
22:52:47,645 WARNING : not adding Base group
22:52:48,052 INFO : leaving (1) step basepkgsel
22:52:48,053 INFO : moving (1) to step postselection
22:52:48,053 DEBUG : postselection is a direct step
22:52:48,056 INFO : selected kernel package for kernel
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/ext3/ext3.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/jbd/jbd.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/mbcache.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/fcoe.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/fcoe/libfcoe.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libfc/libfc.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_fc.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_tgt.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xts.ko.gz
22:52:48,521 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/lrw.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/gf128mul.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/sha256_generic.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/cbc.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-raid.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-crypt.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-round-robin.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-multipath.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-snapshot.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mirror.ko.gz
22:52:48,522 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-region-hash.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-log.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-zero.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/dm-mod.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/linear.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid10.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid456.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_raid6_recov.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_pq.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/raid6/raid6_pq.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_xor.ko.gz
22:52:48,523 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/xor.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_memcpy.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/crypto/async_tx/async_tx.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid1.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/md/raid0.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/8021q/8021q.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/garp.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/802/stp.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/llc/llc.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/hw/mlx4/mlx4_ib.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_en.ko.gz
22:52:48,524 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/mlx4/mlx4_core.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/ulp/ipoib/ib_ipoib.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_cm.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_sa.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_mad.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/infiniband/core/ib_core.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sg.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sd_mod.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/lib/crc-t10dif.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/net/e1000/e1000.ko.gz
22:52:48,525 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/sr_mod.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/cdrom/cdrom.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/misc/vmware_balloon.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptspi.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptscsih.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/message/fusion/mptbase.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_spi.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/pata_acpi.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_generic.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/ata/ata_piix.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/net/ipv6/ipv6.ko.gz
22:52:48,526 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/iscsi_ibft.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_boot_sysfs.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/input/misc/pcspkr.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/firmware/edd.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/block/floppy.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/iscsi_tcp.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi_tcp.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/libiscsi.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/drivers/scsi/scsi_transport_iscsi.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/squashfs/squashfs.ko.gz
22:52:48,527 DEBUG : Checking for DUD module /lib/modules/2.6.32-431.el6.x86_64/kernel/fs/cramfs/cramfs.ko.gz
22:52:53,656 INFO : leaving (1) step postselection
22:52:53,657 INFO : moving (1) to step install
22:52:53,660 INFO : leaving (1) step install
22:52:53,660 INFO : moving (1) to step preinstallconfig
22:52:53,660 DEBUG : preinstallconfig is a direct step
22:52:54,102 DEBUG : isys.py:mount()- going to mount /selinux on /mnt/sysimage/selinux as selinuxfs with options defaults
22:52:54,107 DEBUG : isys.py:mount()- going to mount /proc/bus/usb on /mnt/sysimage/proc/bus/usb as usbfs with options defaults
22:52:54,117 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:52:54,117 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:52:54,130 INFO : copy_to_sysimage: source '/etc/multipath/wwids' does not exist.
22:52:54,130 INFO : copy_to_sysimage: source '/etc/multipath/bindings' does not exist.
22:52:54,134 INFO : leaving (1) step preinstallconfig
22:52:54,134 INFO : moving (1) to step installpackages
22:52:54,134 DEBUG : installpackages is a direct step
22:52:54,134 INFO : Preparing to install packages
23:16:26,925 INFO : leaving (1) step installpackages
23:16:26,926 INFO : moving (1) to step postinstallconfig
23:16:26,926 DEBUG : postinstallconfig is a direct step
23:16:26,934 DEBUG : Removing cachedir: /mnt/sysimage/var/cache/yum/anaconda-CentOS-201311291202.x86_64
23:16:26,949 DEBUG : Removing headers and packages from /mnt/sysimage/var/cache/yum/ppa_repo
23:16:26,953 INFO : leaving (1) step postinstallconfig
23:16:26,953 INFO : moving (1) to step writeconfig
23:16:26,953 DEBUG : writeconfig is a direct step
23:16:26,953 INFO : Writing main configuration
23:16:26,958 WARNING : '/usr/sbin/authconfig' specified as full path
23:16:30,473 WARNING : '/usr/sbin/lokkit' specified as full path
23:16:30,530 WARNING : '/usr/sbin/lokkit' specified as full path
23:16:30,632 INFO : removing libuser.conf at /tmp/libuser.KyLOeb
23:16:30,633 INFO : created new libuser.conf at /tmp/libuser.KyLOeb with instPath="/mnt/sysimage"
23:16:31,956 INFO : leaving (1) step writeconfig
23:16:31,956 INFO : moving (1) to step firstboot
23:16:31,957 DEBUG : firstboot is a direct step
23:16:31,957 INFO : leaving (1) step firstboot
23:16:31,957 INFO : moving (1) to step instbootloader
23:16:31,957 DEBUG : instbootloader is a direct step
23:16:33,920 WARNING : '/sbin/grub-install' specified as full path
23:16:34,226 WARNING : '/sbin/grub' specified as full path
23:16:35,092 INFO : leaving (1) step instbootloader
23:16:35,092 INFO : moving (1) to step reipl
23:16:35,092 DEBUG : reipl is a direct step
23:16:35,093 INFO : leaving (1) step reipl
23:16:35,093 INFO : moving (1) to step writeksconfig
23:16:35,093 DEBUG : writeksconfig is a direct step
23:16:35,093 INFO : Writing autokickstart file
23:16:35,124 INFO : leaving (1) step writeksconfig
23:16:35,124 INFO : moving (1) to step setfilecon
23:16:35,125 DEBUG : setfilecon is a direct step
23:16:35,125 INFO : setting SELinux contexts for anaconda created files
23:16:36,828 INFO : leaving (1) step setfilecon
23:16:36,829 INFO : moving (1) to step copylogs
23:16:36,829 DEBUG : copylogs is a direct step
23:16:36,829 INFO : Copying anaconda logs
23:16:36,831 INFO : leaving (1) step copylogs
23:16:36,831 INFO : moving (1) to step methodcomplete
23:16:36,832 DEBUG : methodcomplete is a direct step
23:16:36,832 INFO : leaving (1) step methodcomplete
23:16:36,832 INFO : moving (1) to step postscripts
23:16:36,832 DEBUG : postscripts is a direct step
23:16:36,832 INFO : Running kickstart %%post script(s)
23:16:36,872 WARNING : '/bin/sh' specified as full path

View File

@ -0,0 +1,446 @@
Feb 21 20:21:42 server2.1 [2014-02-21T20:21:42-08:00] INFO: Forking chef instance to converge...
Feb 21 20:21:51 server2.1 [2014-02-21T20:21:50-08:00] INFO: *** Chef 11.8.0 ***
Feb 21 20:21:51 server2.1 [2014-02-21T20:21:50-08:00] INFO: Chef-client pid: 1350
Feb 21 20:22:14 server2.1 [2014-02-21T20:22:14-08:00] INFO: Client key /etc/chef/client.pem is not present - registering
Feb 21 20:22:18 server2.1 [2014-02-21T20:22:18-08:00] INFO: HTTP Request Returned 404 Object Not Found: error
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:18-08:00] INFO: Setting the run_list to ["role[os-ops-database]"] from JSON
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Run List is [role[os-ops-database]]
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Run List expands to [openstack-common, openstack-common::logging, openstack-ops-database::server, openstack-ops-database::openstack-db]
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Starting Chef Run for server2_openstack_1
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Running start handlers
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: Start handlers complete.
Feb 21 20:22:19 server2.1 [2014-02-21T20:22:19-08:00] INFO: HTTP Request Returned 404 Object Not Found:
Feb 21 20:22:20 server2.1 [2014-02-21T20:22:20-08:00] INFO: Loading cookbooks [apt, aws, build-essential, database, mysql, openssl, openstack-common, openstack-ops-database, postgresql, xfs, yum]
Feb 21 20:22:20 server2.1 [2014-02-21T20:22:20-08:00] INFO: Storing updated cookbooks/mysql/recipes/percona_repo.rb in the cache.
Feb 21 20:22:21 server2.1 [2014-02-21T20:22:20-08:00] INFO: Storing updated cookbooks/mysql/recipes/server.rb in the cache.
Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/default.rb in the cache.
Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/ruby.rb in the cache.
Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/server_ec2.rb in the cache.
Feb 21 20:22:21 server2.1 [2014-02-21T20:22:21-08:00] INFO: Storing updated cookbooks/mysql/recipes/client.rb in the cache.
Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/libraries/helpers.rb in the cache.
Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/attributes/percona_repo.rb in the cache.
Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/attributes/server.rb in the cache.
Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/attributes/client.rb in the cache.
Feb 21 20:22:22 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/templates/default/my.cnf.erb in the cache.
Feb 21 20:22:23 server2.1 [2014-02-21T20:22:22-08:00] INFO: Storing updated cookbooks/mysql/templates/default/mysql-server.seed.erb in the cache.
Feb 21 20:22:23 server2.1 [2014-02-21T20:22:23-08:00] INFO: Storing updated cookbooks/mysql/templates/default/port_mysql.erb in the cache.
Feb 21 20:22:24 server2.1 [2014-02-21T20:22:24-08:00] INFO: Storing updated cookbooks/mysql/templates/default/debian.cnf.erb in the cache.
Feb 21 20:22:24 server2.1 [2014-02-21T20:22:24-08:00] INFO: Storing updated cookbooks/mysql/templates/default/grants.sql.erb in the cache.
Feb 21 20:22:25 server2.1 [2014-02-21T20:22:24-08:00] INFO: Storing updated cookbooks/mysql/templates/windows/my.cnf.erb in the cache.
Feb 21 20:22:25 server2.1 [2014-02-21T20:22:25-08:00] INFO: Storing updated cookbooks/mysql/LICENSE in the cache.
Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/CHANGELOG.md in the cache.
Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/metadata.rb in the cache.
Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/TESTING.md in the cache.
Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/Berksfile in the cache.
Feb 21 20:22:26 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/README.md in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:26-08:00] INFO: Storing updated cookbooks/mysql/CONTRIBUTING in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/mysql/.kitchen.yml in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/mysql.rb in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/ebs_backup.rb in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/default.rb in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/ebs_volume.rb in the cache.
Feb 21 20:22:27 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/postgresql.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/master.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:27-08:00] INFO: Storing updated cookbooks/database/recipes/snapshot.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_mysql_user.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_postgresql.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/resource_database_user.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_postgresql_user.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/resource_mysql_database_user.rb in the cache.
Feb 21 20:22:28 server2.1 [2014-02-21T20:22:28-08:00] INFO: Storing updated cookbooks/database/libraries/resource_sql_server_database_user.rb in the cache.
Feb 21 20:22:29 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_mysql.rb in the cache.
Feb 21 20:22:29 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/resource_mysql_database.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_sql_server.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/resource_database.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:29-08:00] INFO: Storing updated cookbooks/database/libraries/resource_postgresql_database_user.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/libraries/provider_database_sql_server_user.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/libraries/resource_sql_server_database.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/libraries/resource_postgresql_database.rb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/ebs-db-restore.sh.erb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/aws_config.erb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/chef-solo-database-snapshot.rb.erb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/ebs-backup-cron.erb in the cache.
Feb 21 20:22:30 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/app_grants.sql.erb in the cache.
Feb 21 20:22:31 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/s3cfg.erb in the cache.
Feb 21 20:22:31 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/chef-solo-database-snapshot.cron.erb in the cache.
Feb 21 20:22:31 server2.1 [2014-02-21T20:22:30-08:00] INFO: Storing updated cookbooks/database/templates/default/chef-solo-database-snapshot.json.erb in the cache.
Feb 21 20:22:31 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/templates/default/ebs-db-backup.sh.erb in the cache.
Feb 21 20:22:31 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/LICENSE in the cache.
Feb 21 20:22:31 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/CHANGELOG.md in the cache.
Feb 21 20:22:32 server2.1 [2014-02-21T20:22:31-08:00] INFO: Storing updated cookbooks/database/metadata.rb in the cache.
Feb 21 20:22:32 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/database/README.md in the cache.
Feb 21 20:22:32 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/database/CONTRIBUTING in the cache.
Feb 21 20:22:32 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/mysql-server.rb in the cache.
Feb 21 20:22:33 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/server.rb in the cache.
Feb 21 20:22:33 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/openstack-db.rb in the cache.
Feb 21 20:22:33 server2.1 [2014-02-21T20:22:32-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/postgresql-server.rb in the cache.
Feb 21 20:22:33 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/postgresql-client.rb in the cache.
Feb 21 20:22:33 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/mysql-client.rb in the cache.
Feb 21 20:22:33 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/recipes/client.rb in the cache.
Feb 21 20:22:34 server2.1 [2014-02-21T20:22:33-08:00] INFO: Storing updated cookbooks/openstack-ops-database/attributes/default.rb in the cache.
Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/LICENSE in the cache.
Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/CHANGELOG.md in the cache.
Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/metadata.rb in the cache.
Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/openstack-ops-database/README.md in the cache.
Feb 21 20:22:34 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/xfs/recipes/default.rb in the cache.
Feb 21 20:22:35 server2.1 [2014-02-21T20:22:34-08:00] INFO: Storing updated cookbooks/xfs/LICENSE in the cache.
Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/CHANGELOG.md in the cache.
Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/metadata.rb in the cache.
Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/TESTING.md in the cache.
Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/Berksfile in the cache.
Feb 21 20:22:35 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/README.md in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/CONTRIBUTING in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/xfs/.kitchen.yml in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/aws/resources/s3_file.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:35-08:00] INFO: Storing updated cookbooks/aws/resources/elastic_lb.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/resource_tag.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/ebs_volume.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/ebs_raid.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/resources/elastic_ip.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/s3_file.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/elastic_lb.rb in the cache.
Feb 21 20:22:36 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/resource_tag.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/ebs_volume.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/ebs_raid.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:36-08:00] INFO: Storing updated cookbooks/aws/providers/elastic_ip.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/recipes/default.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/libraries/ec2.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/attributes/default.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/LICENSE in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/CHANGELOG.md in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/metadata.rb in the cache.
Feb 21 20:22:37 server2.1 [2014-02-21T20:22:37-08:00] INFO: Storing updated cookbooks/aws/README.md in the cache.
Feb 21 20:22:38 server2.1 [2014-02-21T20:22:38-08:00] INFO: Storing updated cookbooks/aws/CONTRIBUTING in the cache.
Feb 21 20:22:38 server2.1 [2014-02-21T20:22:38-08:00] INFO: Storing updated cookbooks/openssl/recipes/default.rb in the cache.
Feb 21 20:22:39 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/libraries/secure_password.rb in the cache.
Feb 21 20:22:39 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/LICENSE in the cache.
Feb 21 20:22:39 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/CHANGELOG.md in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/metadata.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/README.md in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/openssl/CONTRIBUTING in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:39-08:00] INFO: Storing updated cookbooks/build-essential/recipes/smartos.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/fedora.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/debian.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/rhel.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/default.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/omnios.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/mac_os_x.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/suse.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/recipes/solaris2.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/attributes/default.rb in the cache.
Feb 21 20:22:40 server2.1 [2014-02-21T20:22:40-08:00] INFO: Storing updated cookbooks/build-essential/LICENSE in the cache.
Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/CHANGELOG.md in the cache.
Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/metadata.rb in the cache.
Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/TESTING.md in the cache.
Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/Berksfile in the cache.
Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/README.md in the cache.
Feb 21 20:22:41 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/CONTRIBUTING in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:41-08:00] INFO: Storing updated cookbooks/build-essential/.kitchen.yml in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/resources/repository.rb in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/resources/preference.rb in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/providers/repository.rb in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/providers/preference.rb in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/recipes/default.rb in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/recipes/cacher-ng.rb in the cache.
Feb 21 20:22:42 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/recipes/cacher-client.rb in the cache.
Feb 21 20:22:43 server2.1 [2014-02-21T20:22:42-08:00] INFO: Storing updated cookbooks/apt/attributes/default.rb in the cache.
Feb 21 20:22:43 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/files/default/apt-proxy-v2.conf in the cache.
Feb 21 20:22:43 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/debian-6.0/acng.conf.erb in the cache.
Feb 21 20:22:43 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/ubuntu-10.04/acng.conf.erb in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/default/acng.conf.erb in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/templates/default/01proxy.erb in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:43-08:00] INFO: Storing updated cookbooks/apt/LICENSE in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/CHANGELOG.md in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/metadata.rb in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/TESTING.md in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/Berksfile in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/README.md in the cache.
Feb 21 20:22:44 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/CONTRIBUTING in the cache.
Feb 21 20:22:45 server2.1 [2014-02-21T20:22:44-08:00] INFO: Storing updated cookbooks/apt/.kitchen.yml in the cache.
Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/yum_pgdg_postgresql.rb in the cache.
Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/server.rb in the cache.
Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/server_redhat.rb in the cache.
Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/config_pgtune.rb in the cache.
Feb 21 20:22:45 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/server_debian.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/contrib.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/default.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:45-08:00] INFO: Storing updated cookbooks/postgresql/recipes/apt_pgdg_postgresql.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/recipes/config_initdb.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/recipes/ruby.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/recipes/client.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/libraries/default.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/attributes/default.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/server_test.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/apt_pgdg_postgresql_test.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/default_test.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/ruby_test.rb in the cache.
Feb 21 20:22:46 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/files/default/tests/minitest/support/helpers.rb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/templates/default/postgresql.conf.erb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/templates/default/pgsql.sysconfig.erb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/templates/default/pg_hba.conf.erb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/LICENSE in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:46-08:00] INFO: Storing updated cookbooks/postgresql/CHANGELOG.md in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/metadata.rb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/TESTING.md in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/CONTRIBUTING.md in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/Berksfile in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/README.md in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/postgresql/.kitchen.yml in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/resources/key.rb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/resources/repository.rb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/providers/key.rb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/providers/repository.rb in the cache.
Feb 21 20:22:47 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/recipes/test.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:47-08:00] INFO: Storing updated cookbooks/yum/recipes/epel.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/yum.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/default.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/ius.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/repoforge.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/elrepo.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/recipes/remi.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/epel.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/default.rb in the cache.
Feb 21 20:22:48 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/elrepo.rb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:48-08:00] INFO: Storing updated cookbooks/yum/attributes/remi.rb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/tests/minitest/test_test.rb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/tests/minitest/default_test.rb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/tests/minitest/support/helpers.rb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/files/default/RPM-GPG-KEY-EPEL-6 in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/templates/default/repo.erb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/templates/default/yum-rhel6.conf.erb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/templates/default/yum-rhel5.conf.erb in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/LICENSE in the cache.
Feb 21 20:22:49 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/CHANGELOG.md in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:49-08:00] INFO: Storing updated cookbooks/yum/metadata.rb in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/CONTRIBUTING.md in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/Berksfile in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/README.md in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/yum/.kitchen.yml in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/openstack-common/recipes/default.rb in the cache.
Feb 21 20:22:51 server2.1 [2014-02-21T20:22:51-08:00] INFO: Storing updated cookbooks/openstack-common/recipes/logging.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/recipes/databag.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/parse.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/endpoints.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/search.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/database.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/network.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/passwords.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/libraries/uri.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/attributes/default.rb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/templates/default/logging.conf.erb in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/LICENSE in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Strainerfile in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/.tailor in the cache.
Feb 21 20:22:52 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/CHANGELOG.md in the cache.
Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/metadata.rb in the cache.
Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Berksfile in the cache.
Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/README.md in the cache.
Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Gemfile.lock in the cache.
Feb 21 20:22:53 server2.1 [2014-02-21T20:22:52-08:00] INFO: Storing updated cookbooks/openstack-common/Gemfile in the cache.
Feb 21 20:23:05 server2.1 [2014-02-21T20:23:04-08:00] INFO: Processing package[autoconf] action install (build-essential::rhel line 38)
Feb 21 20:23:47 server2.1 [2014-02-21T20:23:46-08:00] INFO: package[autoconf] installing autoconf-2.63-5.1.el6 from base repository
Feb 21 20:25:48 server2.1 [2014-02-21T20:25:48-08:00] INFO: Processing package[bison] action install (build-essential::rhel line 38)
Feb 21 20:25:49 server2.1 [2014-02-21T20:25:49-08:00] INFO: package[bison] installing bison-2.4.1-5.el6 from base repository
Feb 21 20:26:04 server2.1 [2014-02-21T20:26:03-08:00] INFO: Processing package[flex] action install (build-essential::rhel line 38)
Feb 21 20:26:04 server2.1 [2014-02-21T20:26:03-08:00] INFO: package[flex] installing flex-2.5.35-8.el6 from base repository
Feb 21 20:26:11 server2.1 [2014-02-21T20:26:10-08:00] INFO: Processing package[gcc] action install (build-essential::rhel line 38)
Feb 21 20:26:14 server2.1 [2014-02-21T20:26:13-08:00] INFO: package[gcc] installing gcc-4.4.7-4.el6 from base repository
Feb 21 20:28:09 server2.1 [2014-02-21T20:28:09-08:00] INFO: Processing package[gcc-c++] action install (build-essential::rhel line 38)
Feb 21 20:28:11 server2.1 [2014-02-21T20:28:11-08:00] INFO: package[gcc-c++] installing gcc-c++-4.4.7-4.el6 from base repository
Feb 21 20:28:35 server2.1 [2014-02-21T20:28:35-08:00] INFO: Processing package[kernel-devel] action install (build-essential::rhel line 38)
Feb 21 20:28:38 server2.1 [2014-02-21T20:28:38-08:00] INFO: package[kernel-devel] installing kernel-devel-2.6.32-431.5.1.el6 from updates repository
Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: Processing package[make] action install (build-essential::rhel line 38)
Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: Processing package[m4] action install (build-essential::rhel line 38)
Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: Processing package[mysql] action install (mysql::client line 46)
Feb 21 20:29:49 server2.1 [2014-02-21T20:29:49-08:00] INFO: package[mysql] installing mysql-5.1.73-3.el6_5 from updates repository
Feb 21 20:30:18 server2.1 [2014-02-21T20:30:18-08:00] INFO: Processing package[mysql-devel] action install (mysql::client line 46)
Feb 21 20:30:19 server2.1 [2014-02-21T20:30:19-08:00] INFO: package[mysql-devel] installing mysql-devel-5.1.73-3.el6_5 from updates repository
Feb 21 20:31:06 server2.1 [2014-02-21T20:31:05-08:00] INFO: Processing chef_gem[mysql] action install (mysql::ruby line 31)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for directory[/var/lib/mysql] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous directory[/var/lib/mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:115:in `block in from_file'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current directory[/var/lib/mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:115:in `block in from_file'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Could not find previously defined grants.sql resource
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for service[mysql] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous service[mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:161:in `from_file'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current service[mysql]: /var/chef/cache/cookbooks/mysql/recipes/server.rb:225:in `from_file'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[horizon] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[horizon]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[horizon]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[ceilometer] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[ceilometer]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[ceilometer]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Cloning resource attributes for database_user[service] from prior resource (CHEF-3694)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Previous database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:82:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] WARN: Current database_user[service]: /var/chef/cache/cookbooks/openstack-common/libraries/database.rb:90:in `db_create_with_user'
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Processing yum_key[RPM-GPG-KEY-EPEL-6] action add (yum::epel line 22)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Adding RPM-GPG-KEY-EPEL-6 GPG key to /etc/pki/rpm-gpg/
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:25-08:00] INFO: Processing package[gnupg2] action install (/var/chef/cache/cookbooks/yum/providers/key.rb line 32)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing execute[import-rpm-gpg-key-RPM-GPG-KEY-EPEL-6] action nothing (/var/chef/cache/cookbooks/yum/providers/key.rb line 35)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] action create (/var/chef/cache/cookbooks/yum/providers/key.rb line 66)
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] created file /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] updated file contents /etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6
Feb 21 20:31:26 server2.1 [2014-02-21T20:31:26-08:00] INFO: cookbook_file[/etc/pki/rpm-gpg/RPM-GPG-KEY-EPEL-6] mode changed to 644
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing yum_repository[epel] action add (yum::epel line 27)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Adding epel repository to /etc/yum.repos.d/epel.repo
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] WARN: Cloning resource attributes for yum_key[RPM-GPG-KEY-EPEL-6] from prior resource (CHEF-3694)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] WARN: Previous yum_key[RPM-GPG-KEY-EPEL-6]: /var/chef/cache/cookbooks/yum/recipes/epel.rb:22:in `from_file'
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] WARN: Current yum_key[RPM-GPG-KEY-EPEL-6]: /var/chef/cache/cookbooks/yum/providers/repository.rb:85:in `repo_config'
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing yum_key[RPM-GPG-KEY-EPEL-6] action add (/var/chef/cache/cookbooks/yum/providers/repository.rb line 85)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing execute[yum-makecache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing template[/etc/yum.repos.d/epel.repo] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 100)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] created file /etc/yum.repos.d/epel.repo
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] updated file contents /etc/yum.repos.d/epel.repo
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] mode changed to 644
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: template[/etc/yum.repos.d/epel.repo] sending run action to execute[yum-makecache] (immediate)
Feb 21 20:31:27 server2.1 [2014-02-21T20:31:26-08:00] INFO: Processing execute[yum-makecache] action run (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: execute[yum-makecache] ran successfully
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/epel.repo] sending create action to ruby_block[reload-internal-yum-cache] (immediate)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: ruby_block[reload-internal-yum-cache] called
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing yum_repository[openstack] action create (openstack-common::default line 103)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Adding and updating openstack repository in /etc/yum.repos.d/openstack.repo
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Cloning resource attributes for execute[yum-makecache] from prior resource (CHEF-3694)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Previous execute[yum-makecache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:88:in `repo_config'
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Current execute[yum-makecache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:88:in `repo_config'
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Cloning resource attributes for ruby_block[reload-internal-yum-cache] from prior resource (CHEF-3694)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Previous ruby_block[reload-internal-yum-cache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:93:in `repo_config'
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] WARN: Current ruby_block[reload-internal-yum-cache]: /var/chef/cache/cookbooks/yum/providers/repository.rb:93:in `repo_config'
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing execute[yum-makecache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action nothing (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing template[/etc/yum.repos.d/openstack.repo] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 100)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] created file /etc/yum.repos.d/openstack.repo
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] updated file contents /etc/yum.repos.d/openstack.repo
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] mode changed to 644
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] sending run action to execute[yum-makecache] (immediate)
Feb 21 20:32:35 server2.1 [2014-02-21T20:32:35-08:00] INFO: Processing execute[yum-makecache] action run (/var/chef/cache/cookbooks/yum/providers/repository.rb line 88)
Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: execute[yum-makecache] ran successfully
Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: template[/etc/yum.repos.d/openstack.repo] sending create action to ruby_block[reload-internal-yum-cache] (immediate)
Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: Processing ruby_block[reload-internal-yum-cache] action create (/var/chef/cache/cookbooks/yum/providers/repository.rb line 93)
Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: ruby_block[reload-internal-yum-cache] called
Feb 21 20:32:51 server2.1 [2014-02-21T20:32:51-08:00] INFO: Processing execute[yum-update] action run (openstack-common::default line 110)
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: execute[yum-update] ran successfully
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing directory[/etc/openstack] action create (openstack-common::logging line 20)
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: directory[/etc/openstack] created directory /etc/openstack
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: directory[/etc/openstack] owner changed to 0
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: directory[/etc/openstack] group changed to 0
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: directory[/etc/openstack] mode changed to 755
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing template[/etc/openstack/logging.conf] action create (openstack-common::logging line 27)
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: template[/etc/openstack/logging.conf] created file /etc/openstack/logging.conf
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: template[/etc/openstack/logging.conf] updated file contents /etc/openstack/logging.conf
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: template[/etc/openstack/logging.conf] owner changed to 0
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: template[/etc/openstack/logging.conf] group changed to 0
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: template[/etc/openstack/logging.conf] mode changed to 644
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[autoconf] action nothing (build-essential::rhel line 38)
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[bison] action nothing (build-essential::rhel line 38)
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[flex] action nothing (build-essential::rhel line 38)
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[gcc] action nothing (build-essential::rhel line 38)
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[gcc-c++] action nothing (build-essential::rhel line 38)
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[kernel-devel] action nothing (build-essential::rhel line 38)
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[make] action nothing (build-essential::rhel line 38)
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[m4] action nothing (build-essential::rhel line 38)
Feb 21 20:37:21 server2.1 [2014-02-21T20:37:20-08:00] INFO: Processing package[mysql] action install (mysql::client line 46)
Feb 21 20:37:26 server2.1 [2014-02-21T20:37:25-08:00] INFO: Processing package[mysql-devel] action install (mysql::client line 46)
Feb 21 20:37:26 server2.1 [2014-02-21T20:37:25-08:00] INFO: Processing chef_gem[mysql] action install (mysql::ruby line 31)
Feb 21 20:37:26 server2.1 [2014-02-21T20:37:26-08:00] INFO: Processing package[mysql-server] action install (mysql::server line 101)
Feb 21 20:37:26 server2.1 [2014-02-21T20:37:26-08:00] INFO: package[mysql-server] installing mysql-server-5.1.73-3.el6_5 from updates repository
Feb 21 20:37:46 server2.1 [2014-02-21T20:37:45-08:00] INFO: package[mysql-server] sending start action to service[mysql] (immediate)
Feb 21 20:37:46 server2.1 [2014-02-21T20:37:45-08:00] INFO: Processing service[mysql] action start (mysql::server line 225)
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: service[mysql] started
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing directory[/var/run/mysqld] action create (mysql::server line 115)
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing directory[/var/log/mysql] action create (mysql::server line 115)
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/var/log/mysql] created directory /var/log/mysql
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/var/log/mysql] owner changed to 27
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/var/log/mysql] group changed to 27
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing directory[/etc] action create (mysql::server line 115)
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/etc] owner changed to 27
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/etc] group changed to 27
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing directory[/etc/mysql/conf.d] action create (mysql::server line 115)
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/etc/mysql/conf.d] created directory /etc/mysql/conf.d
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/etc/mysql/conf.d] owner changed to 27
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: directory[/etc/mysql/conf.d] group changed to 27
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing directory[/var/lib/mysql] action create (mysql::server line 115)
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing directory[/var/lib/mysql] action create (mysql::server line 115)
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing execute[mysql-install-db] action run (mysql::server line 155)
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing service[mysql] action enable (mysql::server line 161)
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: service[mysql] enabled
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing execute[assign-root-password] action run (mysql::server line 173)
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: execute[assign-root-password] ran successfully
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing template[/etc/mysql_grants.sql] action create (mysql::server line 186)
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/mysql_grants.sql] created file /etc/mysql_grants.sql
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/mysql_grants.sql] updated file contents /etc/mysql_grants.sql
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/mysql_grants.sql] owner changed to 0
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/mysql_grants.sql] group changed to 0
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/mysql_grants.sql] mode changed to 600
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/mysql_grants.sql] sending run action to execute[mysql-install-privileges] (immediate)
Feb 21 20:38:00 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing execute[mysql-install-privileges] action run (mysql::server line 202)
Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: execute[mysql-install-privileges] ran successfully
Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing execute[mysql-install-privileges] action nothing (mysql::server line 202)
Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing template[/etc/my.cnf] action create (mysql::server line 209)
Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/my.cnf] backed up to /var/chef/backup/etc/my.cnf.chef-20140221203800.767413
Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/my.cnf] updated file contents /etc/my.cnf
Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: template[/etc/my.cnf] sending restart action to service[mysql] (immediate)
Feb 21 20:38:01 server2.1 [2014-02-21T20:38:00-08:00] INFO: Processing service[mysql] action restart (mysql::server line 225)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: service[mysql] restarted
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing service[mysql] action start (mysql::server line 225)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing mysql_database_user[drop empty localhost user] action drop (openstack-ops-database::mysql-server line 42)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing mysql_database_user[drop empty hostname user] action drop (openstack-ops-database::mysql-server line 50)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing mysql_database[test] action drop (openstack-ops-database::mysql-server line 58)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing mysql_database[FLUSH privileges] action nothing (openstack-ops-database::mysql-server line 64)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create nova database] action create (openstack-ops-database::openstack-db line 74)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action create (openstack-ops-database::openstack-db line 82)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action grant (openstack-ops-database::openstack-db line 90)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[service]: granting access with statement [GRANT all ON `nova`.* TO `service`@`%` IDENTIFIED BY [FILTERED]]
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create horizon database] action create (openstack-ops-database::openstack-db line 74)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[horizon] action create (openstack-ops-database::openstack-db line 82)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[horizon] action grant (openstack-ops-database::openstack-db line 90)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[horizon]: granting access with statement [GRANT all ON `horizon`.* TO `horizon`@`%` IDENTIFIED BY [FILTERED]]
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create keystone database] action create (openstack-ops-database::openstack-db line 74)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action create (openstack-ops-database::openstack-db line 82)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action grant (openstack-ops-database::openstack-db line 90)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[service]: granting access with statement [GRANT all ON `keystone`.* TO `service`@`%` IDENTIFIED BY [FILTERED]]
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create glance database] action create (openstack-ops-database::openstack-db line 74)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action create (openstack-ops-database::openstack-db line 82)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action grant (openstack-ops-database::openstack-db line 90)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[service]: granting access with statement [GRANT all ON `glance`.* TO `service`@`%` IDENTIFIED BY [FILTERED]]
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create ceilometer database] action create (openstack-ops-database::openstack-db line 74)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[ceilometer] action create (openstack-ops-database::openstack-db line 82)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[ceilometer] action grant (openstack-ops-database::openstack-db line 90)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[ceilometer]: granting access with statement [GRANT all ON `ceilometer`.* TO `ceilometer`@`%` IDENTIFIED BY [FILTERED]]
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create quantum database] action create (openstack-ops-database::openstack-db line 74)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action create (openstack-ops-database::openstack-db line 82)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action grant (openstack-ops-database::openstack-db line 90)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[service]: granting access with statement [GRANT all ON `quantum`.* TO `service`@`%` IDENTIFIED BY [FILTERED]]
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database[create cinder database] action create (openstack-ops-database::openstack-db line 74)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action create (openstack-ops-database::openstack-db line 82)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing database_user[service] action grant (openstack-ops-database::openstack-db line 90)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: database_user[service]: granting access with statement [GRANT all ON `cinder`.* TO `service`@`%` IDENTIFIED BY [FILTERED]]
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: [mysql_database[test]] sending query action to mysql_database[FLUSH privileges] (delayed)
Feb 21 20:38:06 server2.1 [2014-02-21T20:38:06-08:00] INFO: Processing mysql_database[FLUSH privileges] action query (openstack-ops-database::mysql-server line 64)
Feb 21 20:38:07 server2.1 [2014-02-21T20:38:07-08:00] INFO: Chef Run complete in 948.167010559 seconds
Feb 21 20:38:08 server2.1 [2014-02-21T20:38:07-08:00] INFO: Running report handlers
Feb 21 20:38:08 server2.1 [2014-02-21T20:38:07-08:00] INFO: Report handlers complete

View File

@ -0,0 +1,212 @@
Installing libgcc-4.4.7-4.el6.x86_64
warning: libgcc-4.4.7-4.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY
Installing setup-2.8.14-20.el6_4.1.noarch
Installing filesystem-2.4.30-3.el6.x86_64
Installing basesystem-10.0-4.el6.noarch
Installing ncurses-base-5.7-3.20090208.el6.x86_64
Installing kernel-firmware-2.6.32-431.el6.noarch
Installing tzdata-2013g-1.el6.noarch
Installing nss-softokn-freebl-3.14.3-9.el6.x86_64
Installing glibc-common-2.12-1.132.el6.x86_64
Installing glibc-2.12-1.132.el6.x86_64
Installing ncurses-libs-5.7-3.20090208.el6.x86_64
Installing bash-4.1.2-15.el6_4.x86_64
Installing libattr-2.4.44-7.el6.x86_64
Installing libcap-2.16-5.5.el6.x86_64
Installing zlib-1.2.3-29.el6.x86_64
Installing info-4.13a-8.el6.x86_64
Installing popt-1.13-7.el6.x86_64
Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64
Installing audit-libs-2.2-2.el6.x86_64
Installing libcom_err-1.41.12-18.el6.x86_64
Installing libacl-2.2.49-6.el6.x86_64
Installing db4-4.7.25-18.el6_4.x86_64
Installing nspr-4.10.0-1.el6.x86_64
Installing nss-util-3.15.1-3.el6.x86_64
Installing readline-6.0-4.el6.x86_64
Installing libsepol-2.0.41-4.el6.x86_64
Installing libselinux-2.0.94-5.3.el6_4.1.x86_64
Installing shadow-utils-4.1.4.2-13.el6.x86_64
Installing sed-4.2.1-10.el6.x86_64
Installing bzip2-libs-1.0.5-7.el6_0.x86_64
Installing libuuid-2.17.2-12.14.el6.x86_64
Installing libstdc++-4.4.7-4.el6.x86_64
Installing libblkid-2.17.2-12.14.el6.x86_64
Installing gawk-3.1.7-10.el6.x86_64
Installing file-libs-5.04-15.el6.x86_64
Installing libgpg-error-1.7-4.el6.x86_64
Installing dbus-libs-1.2.24-7.el6_3.x86_64
Installing libudev-147-2.51.el6.x86_64
Installing pcre-7.8-6.el6.x86_64
Installing grep-2.6.3-4.el6.x86_64
Installing lua-5.1.4-4.1.el6.x86_64
Installing sqlite-3.6.20-1.el6.x86_64
Installing cyrus-sasl-lib-2.1.23-13.el6_3.1.x86_64
Installing libidn-1.18-2.el6.x86_64
Installing expat-2.0.1-11.el6_2.x86_64
Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64
Installing elfutils-libelf-0.152-1.el6.x86_64
Installing libgcrypt-1.4.5-11.el6_4.x86_64
Installing bzip2-1.0.5-7.el6_0.x86_64
Installing findutils-4.4.2-6.el6.x86_64
Installing libselinux-utils-2.0.94-5.3.el6_4.1.x86_64
Installing checkpolicy-2.0.22-1.el6.x86_64
Installing cpio-2.10-11.el6_3.x86_64
Installing which-2.19-6.el6.x86_64
Installing libxml2-2.7.6-14.el6.x86_64
Installing libedit-2.11-4.20080712cvs.1.el6.x86_64
Installing pth-2.0.7-9.3.el6.x86_64
Installing tcp_wrappers-libs-7.6-57.el6.x86_64
Installing sysvinit-tools-2.87-5.dsf.el6.x86_64
Installing libtasn1-2.3-3.el6_2.1.x86_64
Installing p11-kit-0.18.5-2.el6.x86_64
Installing p11-kit-trust-0.18.5-2.el6.x86_64
Installing ca-certificates-2013.1.94-65.0.el6.noarch
Installing device-mapper-persistent-data-0.2.8-2.el6.x86_64
Installing nss-softokn-3.14.3-9.el6.x86_64
Installing libnih-1.0.1-7.el6.x86_64
Installing upstart-0.6.5-12.el6_4.1.x86_64
Installing file-5.04-15.el6.x86_64
Installing gmp-4.3.1-7.el6_2.2.x86_64
Installing libusb-0.1.12-23.el6.x86_64
Installing MAKEDEV-3.24-6.el6.x86_64
Installing libutempter-1.1.5-4.1.el6.x86_64
Installing psmisc-22.6-15.el6_0.1.x86_64
Installing net-tools-1.60-110.el6_2.x86_64
Installing vim-minimal-7.2.411-1.8.el6.x86_64
Installing tar-1.23-11.el6.x86_64
Installing procps-3.2.8-25.el6.x86_64
Installing db4-utils-4.7.25-18.el6_4.x86_64
Installing e2fsprogs-libs-1.41.12-18.el6.x86_64
Installing libss-1.41.12-18.el6.x86_64
Installing pinentry-0.7.6-6.el6.x86_64
Installing binutils-2.20.51.0.2-5.36.el6.x86_64
Installing m4-1.4.13-5.el6.x86_64
Installing diffutils-2.8.1-28.el6.x86_64
Installing make-3.81-20.el6.x86_64
Installing dash-0.5.5.1-4.el6.x86_64
Installing ncurses-5.7-3.20090208.el6.x86_64
Installing groff-1.18.1.4-21.el6.x86_64
Installing less-436-10.el6.x86_64
Installing coreutils-libs-8.4-31.el6.x86_64
Installing gzip-1.3.12-19.el6_4.x86_64
Installing cracklib-2.8.16-4.el6.x86_64
Installing cracklib-dicts-2.8.16-4.el6.x86_64
Installing coreutils-8.4-31.el6.x86_64
Installing pam-1.1.1-17.el6.x86_64
Installing module-init-tools-3.9-21.el6_4.x86_64
Installing hwdata-0.233-9.1.el6.noarch
Installing redhat-logos-60.0.14-12.el6.centos.noarch
Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64
Installing libpciaccess-0.13.1-2.el6.x86_64
Installing nss-3.15.1-15.el6.x86_64
Installing nss-sysinit-3.15.1-15.el6.x86_64
Installing nss-tools-3.15.1-15.el6.x86_64
Installing openldap-2.4.23-32.el6_4.1.x86_64
Installing logrotate-3.7.8-17.el6.x86_64
Installing gdbm-1.8.0-36.el6.x86_64
Installing mingetty-1.08-5.el6.x86_64
Installing keyutils-libs-1.4-4.el6.x86_64
Installing krb5-libs-1.10.3-10.el6_4.6.x86_64
Installing openssl-1.0.1e-15.el6.x86_64
Installing libssh2-1.4.2-1.el6.x86_64
Installing libcurl-7.19.7-37.el6_4.x86_64
Installing gnupg2-2.0.14-6.el6_4.x86_64
Installing gpgme-1.1.8-3.el6.x86_64
Installing curl-7.19.7-37.el6_4.x86_64
Installing rpm-libs-4.8.0-37.el6.x86_64
Installing rpm-4.8.0-37.el6.x86_64
Installing fipscheck-lib-1.2.0-7.el6.x86_64
Installing fipscheck-1.2.0-7.el6.x86_64
Installing mysql-libs-5.1.71-1.el6.x86_64
Installing ethtool-3.5-1.el6.x86_64
Installing pciutils-libs-3.1.10-2.el6.x86_64
Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64
Installing libcap-ng-0.6.4-3.el6_0.1.x86_64
Installing libffi-3.0.5-3.2.el6.x86_64
Installing python-2.6.6-51.el6.x86_64
Installing python-libs-2.6.6-51.el6.x86_64
Installing python-pycurl-7.19.0-8.el6.x86_64
Installing python-urlgrabber-3.9.1-9.el6.noarch
Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64
Installing rpm-python-4.8.0-37.el6.x86_64
Installing python-iniparse-0.3.1-2.1.el6.noarch
Installing slang-2.2.1-1.el6.x86_64
Installing newt-0.52.11-3.el6.x86_64
Installing newt-python-0.52.11-3.el6.x86_64
Installing ustr-1.0.4-9.1.el6.x86_64
Installing libsemanage-2.0.43-4.2.el6.x86_64
Installing libaio-0.3.107-10.el6.x86_64
Installing pkgconfig-0.23-9.1.el6.x86_64
Installing gamin-0.1.10-9.el6.x86_64
Installing glib2-2.26.1-3.el6.x86_64
Installing shared-mime-info-0.70-4.el6.x86_64
Installing libuser-0.56.13-5.el6.x86_64
Installing grubby-7.0.15-5.el6.x86_64
Installing yum-metadata-parser-1.1.2-16.el6.x86_64
Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch
Installing yum-3.2.29-40.el6.centos.noarch
Installing dbus-glib-0.86-6.el6.x86_64
Installing dhcp-common-4.1.1-38.P1.el6.centos.x86_64
Installing centos-release-6-5.el6.centos.11.1.x86_64
Installing policycoreutils-2.0.83-19.39.el6.x86_64
Installing iptables-1.4.7-11.el6.x86_64
Installing iproute-2.6.32-31.el6.x86_64
Installing iputils-20071127-17.el6_4.2.x86_64
Installing util-linux-ng-2.17.2-12.14.el6.x86_64
Installing initscripts-9.03.40-2.el6.centos.x86_64
Installing udev-147-2.51.el6.x86_64
Installing device-mapper-libs-1.02.79-8.el6.x86_64
Installing device-mapper-1.02.79-8.el6.x86_64
Installing device-mapper-event-libs-1.02.79-8.el6.x86_64
Installing openssh-5.3p1-94.el6.x86_64
Installing device-mapper-event-1.02.79-8.el6.x86_64
Installing lvm2-libs-2.02.100-8.el6.x86_64
Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64
Installing device-mapper-multipath-libs-0.4.9-72.el6.x86_64
Installing kpartx-0.4.9-72.el6.x86_64
Installing libdrm-2.4.45-2.el6.x86_64
Installing plymouth-0.8.3-27.el6.centos.x86_64
Installing rsyslog-5.8.10-8.el6.x86_64
Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64
Installing postfix-2.6.6-2.2.el6_1.x86_64
Installing cronie-anacron-1.4.4-12.el6.x86_64
Installing cronie-1.4.4-12.el6.x86_64
Installing crontabs-1.10-33.el6.noarch
Installing ntpdate-4.2.6p5-1.el6.centos.x86_64
Installing iptables-ipv6-1.4.7-11.el6.x86_64
Installing selinux-policy-3.7.19-231.el6.noarch
Installing kbd-misc-1.15-11.el6.noarch
Installing kbd-1.15-11.el6.x86_64
Installing dracut-004-335.el6.noarch
Installing dracut-kernel-004-335.el6.noarch
Installing kernel-2.6.32-431.el6.x86_64
Installing fuse-2.8.3-4.el6.x86_64
Installing selinux-policy-targeted-3.7.19-231.el6.noarch
Installing system-config-firewall-base-1.2.27-5.el6.noarch
Installing ntp-4.2.6p5-1.el6.centos.x86_64
Installing device-mapper-multipath-0.4.9-72.el6.x86_64
Installing cryptsetup-luks-1.2.0-7.el6.x86_64
Installing lvm2-2.02.100-8.el6.x86_64
Installing openssh-clients-5.3p1-94.el6.x86_64
Installing openssh-server-5.3p1-94.el6.x86_64
Installing mdadm-3.2.6-7.el6.x86_64
Installing b43-openfwwf-5.2-4.el6.noarch
Installing dhclient-4.1.1-38.P1.el6.centos.x86_64
Installing iscsi-initiator-utils-6.2.0.873-10.el6.x86_64
Installing passwd-0.77-4.el6_2.2.x86_64
Installing authconfig-6.1.12-13.el6.x86_64
Installing grub-0.97-83.el6.x86_64
Installing efibootmgr-0.5.4-11.el6.x86_64
Installing wget-1.12-1.8.el6.x86_64
Installing sudo-1.8.6p3-12.el6.x86_64
Installing audit-2.2-2.el6.x86_64
Installing e2fsprogs-1.41.12-18.el6.x86_64
Installing xfsprogs-3.1.1-14.el6.x86_64
Installing acl-2.2.49-6.el6.x86_64
Installing attr-2.4.44-7.el6.x86_64
Installing chef-11.8.0-1.el6.x86_64
warning: chef-11.8.0-1.el6.x86_64: Header V4 DSA/SHA1 Signature, key ID 83ef826a: NOKEY
Installing bridge-utils-1.2-10.el6.x86_64
Installing rootfiles-8.1-6.1.el6.noarch
*** FINISHED INSTALLING PACKAGES ***

View File

@ -0,0 +1,224 @@
ADAPTERS = [
{'name': 'CentOS_openstack', 'os': 'CentOS', 'target_system': 'openstack'},
]
ROLES = [
{'name': 'os-single-controller', 'target_system': 'openstack'},
{'name': 'os-network', 'target_system': 'openstack'},
{'name': 'os-compute', 'target_system': 'openstack'},
]
SWITCHES = [
{'ip': '1.2.3.4', 'vendor': 'huawei', 'credential': {'version': 'v2c', 'community': 'public'}},
]
MACHINES_BY_SWITCH = {
'1.2.3.4': [
{'mac': '00:00:01:02:03:04', 'port': 1, 'vlan': 1},
{'mac': '00:00:01:02:03:05', 'port': 2, 'vlan': 2},
],
}
CLUSTERS = [
{
'name': 'cluster1',
'adapter': 'CentOS_openstack',
'mutable': False,
'security': {
'server_credentials': {
'username': 'root', 'password': 'huawei'
},
'service_credentials': {
'username': 'service', 'password': 'huawei'
},
'console_credentials': {
'username': 'admin', 'password': 'huawei'
}
},
'networking': {
'interfaces': {
'management': {
'nic': 'eth0',
'promisc': 0,
'netmask': '255.255.255.0',
'ip_end': '192.168.20.200',
'gateway': '',
'ip_start': '192.168.20.100'
},
'storage': {
'nic': 'eth0',
'promisc': 0,
'netmask': '255.255.254.0',
'ip_end': '10.145.88.200',
'gateway': '10.145.88.1',
'ip_start': '10.145.88.100'
},
'public': {
'nic': 'eth2',
'promisc': 1,
'netmask': '255.255.254.0',
'ip_end': '10.145.88.255',
'gateway': '10.145.88.1',
'ip_start': '10.145.88.100'
},
'tenant': {
'nic': 'eth0',
'promisc': 0,
'netmask': '255.255.254.0',
'ip_end': '10.145.88.120',
'gateway': '10.145.88.1',
'ip_start': '10.145.88.100'
}
},
'global': {
'nameservers': '192.168.20.254',
'proxy': 'http://192.168.20.254:3128',
'ntp_server': '192.168.20.254',
'search_path': 'ods.com',
'gateway': '10.145.88.1'
},
},
'partition': '/home 20%%;/tmp 10%%;/var 30%%;',
},
]
HOSTS_BY_CLUSTER = {
'cluster1': [
{
'hostname': 'server1',
'mac': '00:00:01:02:03:04',
'mutable': False,
'config': {
'networking': {
'interfaces': {
'management': {
'ip': '192.168.20.100',
},
},
},
'roles': ["os-single-controller", "os-network"],
},
},{
'hostname': 'server2',
'mac': '00:00:01:02:03:05',
'mutable': False,
'config': {
'networking': {
'interfaces': {
'management': {
'ip': '192.168.20.101',
},
},
},
'roles': ["os-compute"],
},
},
],
}
EXPECTED = {
'test2': {
'checkpoint_1': {
'host_states': {
'server1': {
'hostname': 'server1',
'progress': 0.006,
'state': 'INSTALLING'
},
'server2': {
'hostname': 'server2',
'progress': 0.006,
'state': 'INSTALLING'
},
},
'cluster_states': {
'cluster1': {
'clustername': 'cluster1',
'progress': 0.006,
'state': 'INSTALLING'
},
},
},
'checkpoint_2': {
'host_states': {
'server1': {
'hostname': 'server1',
'progress': 0.33,
'state': 'INSTALLING'
},
'server2': {
'hostname': 'server2',
'progress': 0.33,
'state': 'INSTALLING'
},
},
'cluster_states': {
'cluster1': {
'clustername': 'cluster1',
'progress': 0.33,
'state': 'INSTALLING'
},
},
},
'checkpoint_3': {
'host_states': {
'server1': {
'hostname': 'server1',
'progress': 0.6,
'state': 'INSTALLING'
},
'server2': {
'hostname': 'server2',
'progress': 0.6,
'state': 'INSTALLING'
},
},
'cluster_states': {
'cluster1': {
'clustername': 'cluster1',
'progress': 0.6,
'state': 'INSTALLING'
},
},
},
'checkpoint_4': {
'host_states': {
'server1': {
'hostname': 'server1',
'progress': 0.73882,
'state': 'INSTALLING'
},
'server2': {
'hostname': 'server2',
'progress': 0.68374,
'state': 'INSTALLING'
},
},
'cluster_states': {
'cluster1': {
'clustername': 'cluster1',
'progress': 0.71128,
'state': 'INSTALLING'
},
},
},
'checkpoint_5': {
'host_states': {
'server1': {
'hostname': 'server1',
'progress': 1.0,
'state': 'READY',
},
'server2': {
'hostname': 'server2',
'progress': 1.0,
'state': 'READY',
}
},
'cluster_states': {
'cluster1': {
'clustername': 'cluster1',
'progress': 1.0,
'state': 'READY'
},
},
},
},
}

View File

@ -0,0 +1,255 @@
#!/usr/bin/python
#
# Copyright 2014 Huawei Technologies Co. Ltd
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""integration test for action update_progress"""
import logging
import mock
import os
import os.path
import shutil
import unittest2
import uuid
from contextlib import contextmanager
os.environ['COMPASS_IGNORE_SETTING'] = 'true'
from compass.utils import setting_wrapper as setting
reload(setting)
setting.CONFIG_DIR = '%s/data' % os.path.dirname(os.path.abspath(__file__))
from compass.actions import update_progress
from compass.actions import util
from compass.db import database
from compass.db.model import Adapter
from compass.db.model import Cluster
from compass.db.model import ClusterHost
from compass.db.model import ClusterState
from compass.db.model import HostState
from compass.db.model import Machine
from compass.db.model import Role
from compass.db.model import Switch
from compass.log_analyzor import file_matcher
from compass.utils import flags
from compass.utils import logsetting
def sortCheckPoints(check_points):
ret = []
mapping = {}
for check_point in check_points:
cp_index = int(check_point[-1])
ret.append(cp_index)
mapping[cp_index] = check_point
ret.sort()
while True:
if isinstance(ret[0], int):
ret.append(mapping[ret[0]])
ret.pop(0)
else:
break
return ret
class TestEndToEnd(unittest2.TestCase):
"""Integration test classs."""
def _mock_lock(self):
@contextmanager
def _lock(lock_name, blocking=True, timeout=10):
"""mock lock."""
try:
yield lock_name
finally:
pass
self.lock_backup_ = util.lock
util.lock = mock.Mock(side_effect=_lock)
def _unmock_lock(self):
util.lock = self.lock_backup_
def _test(self, config_file):
full_path = '%s/data/%s' % (
os.path.dirname(os.path.abspath(__file__)),
config_file)
config_file_path = '%s/%s' % (
full_path, config_file)
class _TmpLogMocker:
"""Mocks logs from a check point."""
def __init__(in_self, source_path, check_point, tmp_logdir):
in_self.source_path = source_path
in_self.check_point = check_point
in_self.__logdir__ = tmp_logdir
def _merge_logs(in_self):
dest = in_self.__logdir__
source = os.path.join(
in_self.source_path, in_self.check_point)
shutil.copytree(source, dest)
for root, sub_dir, files in os.walk(dest):
for file in files:
new_name = file.replace(".template", "")
os.rename(
os.path.join(root, file),
os.path.join(root, new_name))
config_globals = {}
config_locals = {}
execfile(config_file_path, config_globals, config_locals)
self._prepare_database(config_locals)
cluster_hosts = {}
with database.session() as session:
clusters = session.query(Cluster).all()
for cluster in clusters:
cluster_hosts[cluster.id] = [
host.id for host in cluster.hosts]
mock_log_path = os.path.join(full_path, "anamon")
check_points = os.listdir(mock_log_path)
check_points = sortCheckPoints(check_points)
for check_point in check_points:
tmp_logdir = os.path.join('/tmp/mocklogs', str(uuid.uuid4()))
log_mocker = _TmpLogMocker(mock_log_path, check_point, tmp_logdir)
setting.INSTALLATION_LOGDIR = log_mocker.__logdir__
logging.info('temp logging dir set to: %s',
setting.INSTALLATION_LOGDIR)
log_mocker._merge_logs()
reload(file_matcher)
update_progress.update_progress(cluster_hosts)
self._check_progress(config_locals, config_file, check_point)
def _check_progress(self, mock_configs, test_type, check_point):
with database.session() as session:
host_states = session.query(HostState).all()
cluster_states = session.query(ClusterState).all()
expected = mock_configs['EXPECTED']
for host_state in host_states:
states = self._filter_query_result(
host_state, ("hostname", "state", "progress"))
expected_host_states = expected[
test_type][check_point][
'host_states'][host_state.hostname]
self.assertEqual(expected_host_states, states)
for cluster_state in cluster_states:
states = self._filter_query_result(
cluster_state, ("clustername", "state", "progress"))
expected_cluster_states = expected[
test_type][check_point][
'cluster_states'][cluster_state.clustername]
self.assertEqual(expected_cluster_states, states)
def _filter_query_result(self, model, keywords):
filtered_dict = {}
for keyword in keywords:
pair = {keyword: eval("model.%s" % keyword)}
filtered_dict.update(pair)
return filtered_dict
def _prepare_database(self, config_locals):
"""Prepare database."""
with database.session() as session:
adapters = {}
for adapter_config in config_locals['ADAPTERS']:
adapter = Adapter(**adapter_config)
session.add(adapter)
adapters[adapter_config['name']] = adapter
roles = {}
for role_config in config_locals['ROLES']:
role = Role(**role_config)
session.add(role)
roles[role_config['name']] = role
switches = {}
for switch_config in config_locals['SWITCHES']:
switch = Switch(**switch_config)
session.add(switch)
switches[switch_config['ip']] = switch
machines = {}
for switch_ip, machine_configs in (
config_locals['MACHINES_BY_SWITCH'].items()
):
for machine_config in machine_configs:
machine = Machine(**machine_config)
machines[machine_config['mac']] = machine
machine.switch = switches[switch_ip]
session.add(machine)
clusters = {}
for cluster_config in config_locals['CLUSTERS']:
adapter_name = cluster_config['adapter']
del cluster_config['adapter']
cluster = Cluster(**cluster_config)
clusters[cluster_config['name']] = cluster
cluster.adapter = adapters[adapter_name]
cluster.state = ClusterState(
state="INSTALLING", progress=0.0, message='')
session.add(cluster)
hosts = {}
for cluster_name, host_configs in (
config_locals['HOSTS_BY_CLUSTER'].items()
):
for host_config in host_configs:
mac = host_config['mac']
del host_config['mac']
host = ClusterHost(**host_config)
hosts['%s.%s' % (
host_config['hostname'], cluster_name)] = host
host.machine = machines[mac]
host.cluster = clusters[cluster_name]
host.state = HostState(
state="INSTALLING", progress=0.0, message='')
session.add(host)
def setUp(self):
super(TestEndToEnd, self).setUp()
logsetting.init()
database.create_db()
self._mock_lock()
os.system = mock.Mock()
self.progress_checker_ = {}
def tearDown(self):
database.drop_db()
self._unmock_lock()
#shutil.rmtree('/tmp/mocklogs/')
super(TestEndToEnd, self).tearDown()
def test_1(self):
self._test('test1')
def test_2(self):
self._test('test2')
if __name__ == '__main__':
flags.init()
logsetting.init()
unittest2.main()

View File

@ -43,7 +43,9 @@ class TestDictMerge(unittest2.TestCase):
super(TestDictMerge, self).tearDown()
def test_simple_merge(self):
"""simple test of merge."""
"""simple test of merge
merge_dict performs in-place merge of rhs to lhs
"""
lhs = {1: 1}
rhs = {2: 2}
util.merge_dict(lhs, rhs)

View File

@ -31,8 +31,8 @@ commands = python setup.py testr --coverage --testr-args='{posargs}'
downloadcache = ~/cache/pip
[flake8]
ignore = H302,H233,H803
ignore = H302,H233,H803,F401
show-source = true
builtins = _
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools
exclude=.venv,.git,.tox,dist,doc,*lib/python*,*egg,tools,build