# Kickstart file automatically generated by anaconda. #version=DEVEL install nfs --server=10.169.112.98 --dir=/tmp2/ISXCQUOGGY/7.2.4.42 lang en_US.UTF-8 keyboard us network --onboot yes --device eth0 --mtu=1500 --bootproto dhcp rootpw --iscrypted $1$v6sQ+Rqa$.3AfP91Uw2ckPWQBvZ.YR0 # Shutdown after installation shutdown firewall --disabled authconfig --enableshadow --enablemd5 selinux --disabled timezone --utc America/New_York bootloader --location=mbr --driveorder=sda --append="nomodeset crashkernel=auto rhgb quiet" --password=$1$aQMrQ$7YtdlRBqVDmVjFCIZDYHc0 # The following is the partition information you requested # Note that any partitions you deleted are not expressed # here so unless you clear all partitions first, this is # not guaranteed to work #clearpart --all --drives=sda --initlabel #part /boot --fstype=ext3 --size=105 #part pv.008002 --grow --size=1 #volgroup vg0 --pesize=32768 pv.008002 #logvol /data --fstype=ext3 --name=data --vgname=vg0 --grow --size=2000 #logvol / --fstype=ext3 --name=root --vgname=vg0 --size=2560 #logvol swap --name=swap --vgname=vg0 --size=2048 #logvol /tmp --fstype=ext3 --name=tmp --vgname=vg0 --size=2560 #logvol /usr --fstype=ext3 --name=usr --vgname=vg0 --size=2560 #logvol /var --fstype=ext3 --name=var --vgname=vg0 --size=4150 repo --name="CentOS" --baseurl=nfs:10.169.112.98:/tmp2/ISXCQUOGGY/7.2.4.42 --cost=100 %packages --nobase @Core @Core %end %pre DEVDIR="/sys/block" BOOTDRIVE="" INSTDRIVE="" for DEV in sda sdb sdc sdd sde; do if [ -d $DEVDIR/$DEV ]; then REMOVABLE=`cat $DEVDIR/$DEV/removable` if (( $REMOVABLE == 0 )); then if [ -z $INSTDRIVE ]; then INSTDRIVE=$DEV fi else if [ -z $BOOTDRIVE ]; then BOOTDRIVE=$DEV fi fi fi done # # Figure out partition scheme - format everything. ################################################################################ ANACONDA_PID=`ps -ef | grep anaconda | grep -v grep | gawk '{ print $2 }'` # # Calculate swap space - based on (Total Memory * 2) ################################################################################# TOTAL_MEMORY=`grep -i 'MemTotal' /proc/meminfo | gawk '{ print $2 }'` SCALED_MEM=$(($TOTAL_MEMORY / 1000)) if (( $SCALED_MEM < 3800 )); then SWAP_SPACE=2048 elif (( $SCALED_MEM >= 3800 && $SCALED_MEM < 15800 )); then SWAP_SPACE=4096 elif (( $SCALED_MEM >= 15800 && $SCALED_MEM < 63800 )); then SWAP_SPACE=8192 elif (( $SCALED_MEM >= 63800 && $SCALED_MEM < 255800 )); then SWAP_SPACE=16384 else SWAP_SPACE=32768 fi #partition new NBC and wipe everything (fresh install) #echo "ignoredisk --drives=${BOOTDRIVE}" >> /tmp/partition_map ignoredisk --only-use=${INSTDRIVE} echo "bootloader --location=mbr --driveorder=${INSTDRIVE} --md5pass=\$1\$aQMrQ\$7YtdlRBqVDmVjFCIZDYHc0" >> /tmp/partition_map echo "clearpart --all --initlabel --drives=${INSTDRIVE}" >> /tmp/partition_map # For future use # echo "part biosboot --fstype=biosboot --size=1" >> /tmp/partition_map echo "part /boot --fstype ext3 --size=105 --ondisk=${INSTDRIVE}" >> /tmp/partition_map echo "part pv.01 --size=1 --grow --ondisk=${INSTDRIVE}" >> /tmp/partition_map echo "volgroup vg0 --pesize=32768 pv.01" >> /tmp/partition_map echo "logvol / --fstype ext3 --name=root --vgname=vg0 --size=2560" >> /tmp/partition_map echo "logvol /usr --fstype ext3 --name=usr --vgname=vg0 --size=2560" >> /tmp/partition_map echo "logvol /var --fstype ext3 --name=var --vgname=vg0 --size=4150" >> /tmp/partition_map echo "logvol /data --fstype ext3 --name=data --vgname=vg0 --size=2000 --grow" >> /tmp/partition_map echo "logvol /tmp --fstype ext3 --name=tmp --vgname=vg0 --size=2560" >> /tmp/partition_map echo "logvol swap --fstype swap --name=swap --vgname=vg0 --size=${SWAP_SPACE}" >> /tmp/partition_map chvt 1 echo -e "\n\nPlease wait - Restoring the StruxureWare Data Center Expert server..." > /dev/tty1 %end %post --logfile /var/log/anaconda-post.log clear # # Determine if installing on a T60p laptop for a customer demo ################################################################################ LAPTOP_INSTALL=0 CD_INSTALL=0 HD_INSTALL=0 cat /proc/cmdline | grep -q laptop_install if [ $? -eq 0 ] then LAPTOP_INSTALL=1 fi cat /proc/cmdline | grep -q ks=cdrom if [ $? -eq 0 ] then CD_INSTALL=1 fi cat /proc/cmdline | grep -q ks=hd if [ $? -eq 0 ] then HD_INSTALL=1 fi if [ $LAPTOP_INSTALL -ne 1 ] then # skip this for a laptop install exec < /dev/tty1 > /dev/tty1 fi # #VARS ################################################################################ ANACONDA_PID=`ps -ef | grep anaconda | grep -v grep | gawk '{ print $2 }'` OS_VERSION=`gawk '{print $4 }' /etc/system-release` if [ -e /tmp/bc_tag.txt ]; then NBC_VER=`cat /tmp/bc_tag.txt` else NBC_VER=not_upgrade fi # #Fix up boot screen ################################################################################ echo -n "Editing grub.conf..." sed -e 's/timeout=5/timeout=2/' \ -e 's/CentOS (/Data Center Expert (Kernel /' /boot/grub/grub.conf > /boot/grub/grub.conf.new mv -f /boot/grub/grub.conf.new /boot/grub/grub.conf echo "done." # #Customize login options and boot messages ################################################################################ echo -n "Customizing login prompt..." echo "StruxureWare Data Center Expert server 7.2.4 " > /etc/issue echo "" >> /etc/issue echo "Warning: system login through this interface without direction" >>/etc/issue echo " from Schneider Electric support will void your warranty." >> /etc/issue echo "StruxureWare Data Center Expert server 7.2.4 " > /etc/issue.net echo "" >> /etc/issue.net echo "Warning: system login through this interface without direction" >>/etc/issue.net echo " from Schneider Electric support will void your warranty." >> /etc/issue.net echo "done." echo -n "Enabling root login over serial port..." echo "ttyS0" >> /etc/securetty echo "done." #echo -n "Updating shell prompts..." #echo "ls ; clear" >> /etc/profile #echo "done." echo -n "Editing rc.sysint..." sed -e 's/Welcome to/Initializing/' \ -e 's/echo -en "CentOS"/echo -en "StruxureWare"/' \ -e 's/PRODUCT=.*/PRODUCT=\"Data Center Expert\"/' \ /etc/rc.d/rc.sysinit >/etc/rc.d/rc.sysinit.new mv -f /etc/rc.d/rc.sysinit.new /etc/rc.d/rc.sysinit chmod 755 /etc/rc.d/rc.sysinit echo "done." # #Edit host file ################################################################################ # echo -n "Fixing up /etc/hosts..." # sed -e 's/localhost.localdomain //' /etc/hosts > /etc/hosts.new # mv -f /etc/hosts.new /etc/hosts # echo "done." # #Turn off unwanted services ################################################################################ echo -n "Configuring services..." chkconfig haldaemon off chkconfig iptables off chkconfig ip6tables off chkconfig lm_sensors off chkconfig messagebus off chkconfig netfs off chkconfig network on chkconfig nfslock off chkconfig ntpd off chkconfig ntpdate off chkconfig postgresql-9.0 off chkconfig rpcgssd off chkconfig rpcidmapd off chkconfig rpcbind off chkconfig sshd off echo "done." if [ $LAPTOP_INSTALL -eq 1 ] then if ! grep -iq "RxIntDelay=5" /etc/modprobe.d/apc.conf; then # add e1000 RxIntDelay option to speed up network performance on T60p laptop echo "options e1000 RxIntDelay=5" >> /etc/modprobe.d/apc.conf fi fi # #Install GPG key ################################################################################ rpm -v --import /etc/pki/rpm-gpg/* # #Set ntp servers ################################################################################ #echo "ntp.netbotz.com" >> /etc/ntp/step-tickers #echo "time.nist.gov" >> /etc/ntp/step-tickers # # Remove shm mount ################################################################################ #if grep -q shm /etc/fstab ;then sed -e '/shm/d' /etc/fstab >/etc/fstab.new; fi #mv -f /etc/fstab.new /etc/fstab #Turn on 32-bit on hda on not RAID systems ################################################################################ #if [ $NBC_VER != "not_upgrade" ];then # hdparm -c1 /dev/hda into /etc/sysconfig/harddisks #fi # #Disable zeroconf route ############################################################################### echo "NOZEROCONF=yes" >> /etc/sysconfig/network # #Edit user accts fix logs ################################################################################ echo -n "Editing user accounts..." touch /root/.hushlogin #DIACAP req's /usr/sbin/userdel shutdown /usr/sbin/userdel halt /usr/sbin/userdel sync sed -e 's/nullok *//' /etc/pam.d/system-auth > /etc/pam.d/system-auth.new mv -f /etc/pam.d/system-auth.new /etc/pam.d/system-auth mv -f /root/anaconda-ks.cfg /data/logs/install.log echo -e "\n\n# install.log\n" >> /data/logs/install.log cat /root/install.log >> /data/logs/install.log echo -e "\n\n# install.log.syslog\n" >> /data/logs/install.log cat /root/install.log.syslog >> /data//logs/install.log rm -f /root/install.log /root/install.log.syslog echo "done." # #Install Data Center Expert Code ################################################################################ echo -e "\nSetting up Data Center Expert..." if [ $NBC_VER == "not_upgrade" ];then # edit for automated network install, also edit nfs line at top of file # PXE Server dependence next six lines NFSINSTALL=yes NFSSERVER=10.169.112.98 NFSDIR=/tmp2/ISXCQUOGGY/7.2.4.42 if [ $NFSINSTALL == "yes" ];then mount -t nfs -o nolock $NFSSERVER:$NFSDIR /mnt || echo -e "\nCould not mount $NFSSERVER:$NFSDIR.\n" else if [ $CD_INSTALL -eq 1 ] then #find cdrom drive for device in `grep "drive name:" /proc/sys/dev/cdrom/info | cut -f 2 -d ':'` do cdrom="/dev/$device" if [ -b $cdrom ] then mount -t iso9660 $cdrom /mnt && break fi echo -e "\nCould not mount cdrom drive $cdrom.\n" done else if [ $HD_INSTALL -eq 1 ] then mkdir /tmp/usb mount /dev/disk/by-label/ISXC /tmp/usb for i in /tmp/usb/iso/*.iso do ISO_FILE=$i break done if [ -n $ISO_FILE ] then # mknod /dev/loop0 b 7 0 mount -o loop -t iso9660 $ISO_FILE /mnt || echo -e "\nCould not mount $ISO_FILE.\n" fi fi fi fi cp -a /mnt/NetBotz/upgrade /etc/nbc/ find /etc/nbc/upgrade -iname "TRANS.TBL"| xargs rm -f {}\; #Create megaraid character device file for megarc utility if megaraid/perc card present #This is not necessary on SAS controllers since MegaCLI will create the file #automatically the first time it is run. if grep -iq megaraid /proc/scsi/scsi; then MAJOR=`grep megadev /proc/devices|gawk '{print $1}'` if [ ! x$MAJOR = x ]; then # major device number found rm -f /dev/megadev0 # remove if already there, ignore if not. mknod /dev/megadev0 c $MAJOR 0 mkdir -p /etc/udev/devices mknod /etc/udev/devices/megadev0 c $MAJOR 0 fi #turn off MegaRAID BIOS Stop on Error (incase drive is failed, we still want to boot) echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~" | tee -a /data/logs/install.log echo "| Disabling MegaRAID SOE |" | tee -a /data/logs/install.log echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~" | tee -a /data/logs/install.log /mnt/NetBotz/utils/megarc.bin -offBIOS_SOE -a0 -nolog | tee -a /data/logs/install.log elif grep -iq perc /proc/scsi/scsi; then #there is a MegaRAID SAS controller #turn off MegaRAID BIOS Stop on Error (incase drive is failed, we still want to boot) echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~" | tee -a /data/logs/install.log echo "| Disabling MegaRAID SOE |" | tee -a /data/logs/install.log echo "~~~~~~~~~~~~~~~~~~~~~~~~~~~" | tee -a /data/logs/install.log /mnt/NetBotz/utils/MegaCli -AdpBIOS -Dsbl -a0 | tee -a /data/logs/install.log /mnt/NetBotz/utils/MegaCli -AdpBIOS -Enbl -a0 | tee -a /data/logs/install.log /mnt/NetBotz/utils/MegaCli -AdpBIOS -BE -a0 | tee -a /data/logs/install.log #switch eth0 and eth1 ordering #TODO why doesn't this work when run from PXE? cd /mnt/NetBotz/utils/name_eths-0.3 >> /data/logs/install.log ./name_eths_redhat >> /data/logs/install.log fi cd /data else echo "Unknown version." fi #/mnt/NetBotz/utils/sysinfo | grep -i dell #if [ $? = 0 ]; then # echo "alias eth0 e1000" # echo "alias eth1 e1000" #fi echo "done." # Fix ifcfg-eth0 # Set interface to ONBOOT=yes to ensure ifconfig shows the MAC address. IFCFG_ETH0_FILE=/etc/sysconfig/network-scripts/ifcfg-eth0 sed -e 's/"//g' -e 's/ONBOOT=[A-Za-z].*/ONBOOT=yes/' -e '/BOOTPROTO=.*/ d' $IFCFG_ETH0_FILE > $IFCFG_ETH0_FILE.new mv -f $IFCFG_ETH0_FILE.new $IFCFG_ETH0_FILE # Determine if a second NIC exists, and if not (as with the VM), remove ifcfg-eth1 let NUMNICS=`lspci | grep -i 'ethernet controller' | wc -l` if [[ $NUMNICS -lt 2 ]]; then echo "There is only one NIC found, therefore ifcfg-eth1 will be removed." >> /data/logs/install.log rm -f $IFCFG_ETH1_FILE else echo "There are at least two NICs, therefore ifcfg-eth1 will be created." >> /data/logs/install.log # Fix ifcfg-eth1 # remove all BOOTPROTO=dhcp lines # Set it back to static: network --device eth1 --bootproto static --ip 192.168.1.1 --netmask 255.255.248.0 # PXE Server dependence on this section ################################################################################################################# IFCFG_ETH1_FILE=/etc/sysconfig/network-scripts/ifcfg-eth1 sed -e 's/"//g' -e '/BOOTPROTO=/d' -e '/ONBOOT=.*/d' -e '/NM_CONTROLLED=.*/d' $IFCFG_ETH1_FILE > $IFCFG_ETH1_FILE.new mv -f $IFCFG_ETH1_FILE.new $IFCFG_ETH1_FILE echo "ONBOOT=yes" >> $IFCFG_ETH1_FILE echo "BOOTPROTO=static" >> $IFCFG_ETH1_FILE echo "TYPE=Ethernet" >> $IFCFG_ETH1_FILE echo "IPADDR=192.168.1.1" >> $IFCFG_ETH1_FILE echo "NETMASK=255.255.248.0" >> $IFCFG_ETH1_FILE echo "done." fi #Setup network configuration script ################################################################################ echo -n "Setting up network configuration script..." echo "~/.bcsetup" >> /root/.bash_profile chmod 755 /root/.bcsetup echo "done." #Setup /root/.emacs file ################################################################################ echo -n "Setting up root's .emacs file..." echo ";;; Fix junk characters in shell mode" > /root/.emacs echo "(add-hook 'shell-mode-hook 'ansi-color-for-comint-mode-on)" >> /root/.emacs echo "done." #Disable yum gpg check ################################################################################ sed -e 's/gpgcheck=1/gpgcheck=0/' /etc/yum.conf > /etc/yum.conf.new mv -f /etc/yum.conf.new /etc/yum.conf # # Set cookie that mfg cd installed this system ################################################################################ touch /data/nbc_mfg #clear screen #clear >/dev/ttyS0 #unmount cdrom umount /mnt if [ $HD_INSTALL -eq 1 ] then if [ -d /tmp/usb ] then umount /tmp/usb rmdir /tmp/usb fi if [ -b /dev/loop0 ] then rm -f /dev/loop0 fi fi # Remove serial parameters from grub.conf, make boot menu hidden, disable boot splash image sed -e '/^terminal/ d' -e '/^serial/ d' -e '/^timeout=/ a\hiddenmenu' -e '/^splashimage=/ d' -e 's/ console=[^ ]*//' -e 's/ rhgb//' -e 's/ quiet//' -e '/^[\t* *]kernel / s/$/ vga=791/' -e '/^[\t* *]kernel / s/$/ nomodeset/' -e '/^[\t* *]kernel / s/$/ biosdevname=0/' /boot/grub/grub.conf > /boot/grub/grub.conf.new mv -f /boot/grub/grub.conf.new /boot/grub/grub.conf # # PXE Server Additions # The PXE server get-isxc-isos.sh script appends the content below to the ks-vm.cfg file that was originally # in the iso the NBC build process. # # VMs are built as production. # echo Starting PXE Server ks.cfg post appendix.... >> /data/tmp/pxe-kickstart.log # # # This is the indication to isxc that it's running on a virtual machine # mkdir /data/isxc touch /data/isxc/.vm # # Disable smaCore (ISXO). It was enabled by rpm install because the server grade # was not basic. Disable, but make it licensable. # # Commenting since we no longer install smaCore (as of Mammoth) # /etc/nbc/pluginFunctions.sh disable smaCore # rm -rf /data/tmp/.smaCore # Dynamic Root Password feature stays enabled. # Get the IP address echo Get the IP address of this host. >> /data/tmp/pxe-kickstart.log ifconfig >> /data/tmp/pxe-ifconfig.out ifconfig|grep -e 'inet addr'|awk '{print $2}'|grep -o -e '[0-9.]\{1,\}' > /data/tmp/pxe-ip_address IPADDRESS=`grep -v 192.168 /data/tmp/pxe-ip_address | grep -v 127.0.0.1 | grep -o -e '[0-9.]\{1,\}'` # sshd off by default for vm # # Call CGI script on the pxe server to bring down the pxelinux configuration # symlink for this IP address to prevent the box from being imaged repeatedly. # echo Removing PXE server image link for this host. >> /data/tmp/pxe-kickstart.log PXESERVER=$NFSSERVER wget -v -o /data/tmp/pxelinkdown.log --ignore-length -E -P /data/tmp http://$PXESERVER/cgi-bin/pxelink.pl?cmd=unlink\&host=$IPADDRESS echo PXE kickstart appendix is done. >> /data/tmp/pxe-kickstart.log # Remove trace of build VM MACs so that OVF will be pristine. echo Rewrite ifcfg-eth0. >> /data/tmp/pxe-kickstart.log echo Building generic ifcfg-eth0 >> /data/tmp/pxe-kickstart.log echo "DEVICE=eth0" > /etc/sysconfig/network-scripts/ifcfg-eth0 echo "BOOTPROTO=static" >> /etc/sysconfig/network-scripts/ifcfg-eth0 echo "ONBOOT=yes" >> /etc/sysconfig/network-scripts/ifcfg-eth0 echo "TYPE=Ethernet" >> /etc/sysconfig/network-scripts/ifcfg-eth0 rm -rf /etc/udev/rules.d/70-persistent-net.rules # Remove DNS entries from OVF. echo "clear /etc/resolv.conf" >> /data/tmp/pxe-kickstart.log cp /etc/resolv.conf /data/tmp/pxe-resolv.conf echo "#nameserver, boy anacondas is sooooo dumb." > /etc/resolv.conf echo "remove /etc/resolv.conf.predhclient.eth0" >> /data/tmp/pxe-kickstart.log rm -rf /etc/resolv.conf.predhclient.eth0 # Make sure anaconda can't write to resolv.conf... a .bcsetup change reverts this at first login. chattr +i /etc/resolv.conf # Clean out the pxe scripts from /data/tmp for the VM rm -rf /data/tmp/pxe* %end # install.log Installing libgcc-4.4.7-3.el6.x86_64 warning: libgcc-4.4.7-3.el6.x86_64: Header V3 RSA/SHA1 Signature, key ID c105b9de: NOKEY Installing setup-2.8.14-20.el6.noarch Installing filesystem-2.4.30-3.el6.x86_64 Installing dhcp-common-4.1.1-34.P1.el6_4.1.x86_64 Installing ca-certificates-2010.63-3.el6_1.5.noarch Installing m17n-db-1.5.5-1.1.el6.noarch Installing m17n-db-datafiles-1.5.5-1.1.el6.noarch Installing basesystem-10.0-4.el6.noarch Installing libX11-common-1.5.0-4.el6.noarch Installing kernel-firmware-2.6.32-358.18.1.el6.noarch Installing mailcap-2.1.31-2.el6.noarch Installing ncurses-base-5.7-3.20090208.el6.x86_64 Installing tzdata-2013c-2.el6.noarch Installing glibc-common-2.12-1.107.el6_4.4.x86_64 Installing nss-softokn-freebl-3.14.3-3.el6_4.x86_64 Installing glibc-2.12-1.107.el6_4.4.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 libcom_err-1.41.12-14.el6_4.2.x86_64 Installing popt-1.13-7.el6.x86_64 Installing chkconfig-1.3.49.3-2.el6_4.1.x86_64 Installing dbus-libs-1.2.24-7.el6_3.x86_64 Installing db4-4.7.25-18.el6_4.x86_64 Installing audit-libs-2.2-2.el6.x86_64 Installing readline-6.0-4.el6.x86_64 Installing libacl-2.2.49-6.el6.x86_64 Installing libstdc++-4.4.7-3.el6.x86_64 Installing expat-2.0.1-11.el6_2.x86_64 Installing libxml2-2.7.6-12.el6_4.1.x86_64 Installing libsepol-2.0.41-4.el6.x86_64 Installing libselinux-2.0.94-5.3.el6_4.1.x86_64 Installing gamin-0.1.10-9.el6.x86_64 Installing glib2-2.22.5-7.el6.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 nspr-4.9.5-2.el6_4.x86_64 Installing freetype-2.3.11-14.el6_3.1.x86_64 Installing libuuid-2.17.2-12.9.el6_4.3.x86_64 Installing gawk-3.1.7-10.el6.x86_64 Installing tcp_wrappers-libs-7.6-57.el6.x86_64 Installing nss-util-3.14.3-3.el6_4.x86_64 Installing libgpg-error-1.7-4.el6.x86_64 Installing libgcrypt-1.4.5-9.el6_2.2.x86_64 Installing libblkid-2.17.2-12.9.el6_4.3.x86_64 Installing dbus-glib-0.86-6.el6.x86_64 Installing libpng-1.2.49-1.el6_2.x86_64 Installing xz-libs-4.999.9-0.3.beta.20091007git.el6.x86_64 Installing libjpeg-turbo-1.2.1-1.el6.x86_64 Installing elfutils-libelf-0.152-1.el6.x86_64 Installing findutils-4.4.2-6.el6.x86_64 Installing libtalloc-2.0.7-2.el6.x86_64 Installing libICE-1.0.6-1.el6.x86_64 Installing libSM-1.2.1-2.el6.x86_64 Installing pcre-7.8-6.el6.x86_64 Installing grep-2.6.3-3.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 file-libs-5.04-15.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 libgssglue-0.1-11.el6.x86_64 Installing libtdb-1.2.10-1.el6.x86_64 Installing libnl-1.1.4-1.el6_4.x86_64 Installing libudev-147-2.46.el6.x86_64 Installing libcap-ng-0.6.4-3.el6_0.1.x86_64 Installing dbus-1.2.24-7.el6_3.x86_64 Installing libtiff-3.9.4-9.el6_3.x86_64 Installing apr-1.3.9-5.el6_2.x86_64 Installing apr-util-1.3.9-3.el6_0.1.x86_64 Installing bzip2-1.0.5-7.el6_0.x86_64 Installing atk-1.28.0-2.el6.x86_64 Installing psmisc-22.6-15.el6_0.1.x86_64 Installing lua-5.1.4-4.1.el6.x86_64 Installing pth-2.0.7-9.3.el6.x86_64 Installing lm_sensors-libs-3.1.1-17.el6.x86_64 Installing pciutils-libs-3.1.10-2.el6.x86_64 Installing libtirpc-0.2.1-6.el6_4.x86_64 Installing keyutils-1.4-4.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 vim-minimal-7.2.411-1.8.el6.x86_64 Installing libusb-0.1.12-23.el6.x86_64 Installing libsmbios-2.2.28-3.el6.x86_64 Installing gmp-4.3.1-7.el6_2.2.x86_64 Installing e2fsprogs-libs-1.41.12-14.el6_4.2.x86_64 Installing which-2.19-6.el6.x86_64 Installing cpio-2.10-11.el6_3.x86_64 Installing libedit-2.11-4.20080712cvs.1.el6.x86_64 Installing gdbm-1.8.0-36.el6.x86_64 Installing perl-Pod-Escapes-1.04-131.el6_4.x86_64 Installing perl-libs-5.10.1-131.el6_4.x86_64 Installing perl-Pod-Simple-3.13-131.el6_4.x86_64 Installing perl-Module-Pluggable-3.90-131.el6_4.x86_64 Installing perl-version-0.77-131.el6_4.x86_64 Installing perl-5.10.1-131.el6_4.x86_64 Installing sysvinit-tools-2.87-4.dsf.el6.x86_64 Installing gpm-libs-1.20.6-12.el6.x86_64 Installing dmidecode-2.11-2.el6_1.x86_64 Installing smbios-utils-bin-2.2.28-3.el6.x86_64 Installing hal-libs-0.5.14-11.el6.x86_64 Installing iw-0.9.17-4.el6.x86_64 Installing file-5.04-15.el6.x86_64 Installing nss-softokn-3.14.3-3.el6_4.x86_64 Installing elfutils-libs-0.152-1.el6.x86_64 Installing jasper-libs-1.900.1-15.el6_1.1.x86_64 Installing xz-4.999.9-0.3.beta.20091007git.el6.x86_64 Installing xz-lzma-compat-4.999.9-0.3.beta.20091007git.el6.x86_64 Installing eggdbus-0.6-3.el6.x86_64 Installing grubby-7.0.15-3.el6.x86_64 Installing libksba-1.0.7-1.el6.x86_64 Installing tcp_wrappers-7.6-57.el6.x86_64 Installing MAKEDEV-3.24-6.el6.x86_64 Installing libutempter-1.1.5-4.1.el6.x86_64 Installing libcroco-0.6.2-5.el6.x86_64 Installing desktop-file-utils-0.15-9.el6.x86_64 Installing libIDL-0.8.13-2.1.el6.x86_64 Installing ORBit2-2.14.17-3.2.el6_3.x86_64 Installing tar-1.23-11.el6.x86_64 Installing net-tools-1.60-110.el6_2.x86_64 Installing procps-3.2.8-25.el6.x86_64 Installing device-mapper-persistent-data-0.1.4-1.el6.x86_64 Installing acl-2.2.49-6.el6.x86_64 Installing db4-utils-4.7.25-18.el6_4.x86_64 Installing avahi-libs-0.6.25-12.el6.x86_64 Installing libnih-1.0.1-7.el6.x86_64 Installing upstart-0.6.5-12.el6_4.1.x86_64 Installing portreserve-0.0.4-9.el6.x86_64 Installing pinentry-0.7.6-6.el6.x86_64 Installing libss-1.41.12-14.el6_4.2.x86_64 Installing e2fsprogs-1.41.12-14.el6_4.2.x86_64 Installing m4-1.4.13-5.el6.x86_64 Installing binutils-2.20.51.0.2-5.36.el6.x86_64 Installing libgomp-4.4.7-3.el6.x86_64 Installing diffutils-2.8.1-28.el6.x86_64 Installing procmail-3.22-25.1.el6.x86_64 Installing dash-0.5.5.1-4.el6.x86_64 Installing vim-common-7.2.411-1.8.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-19.el6_4.2.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-19.el6_4.2.x86_64 Installing pam-1.1.1-13.el6.x86_64 Installing openssl-1.0.0-27.el6_4.2.x86_64 Installing fontconfig-2.8.0-3.el6.x86_64 Installing module-init-tools-3.9-21.el6_4.x86_64 Installing hwdata-0.233-7.9.el6.noarch Installing redhat-logos-60.0.14-12.el6.centos.noarch Installing libssh2-1.4.2-1.el6.x86_64 Installing logrotate-3.7.8-16.el6.x86_64 Installing alsa-lib-1.0.22-3.el6.x86_64 Installing plymouth-scripts-0.8.3-27.el6.centos.x86_64 Installing pciutils-3.1.10-2.el6.x86_64 Installing libpciaccess-0.13.1-2.el6.x86_64 Installing bind-libs-9.8.2-0.17.rc1.el6_4.6.x86_64 Installing fipscheck-lib-1.2.0-7.el6.x86_64 Installing fipscheck-1.2.0-7.el6.x86_64 Installing httpd-tools-2.2.15-29.el6.centos.x86_64 Installing ConsoleKit-libs-0.4.1-3.el6.x86_64 Installing polkit-0.96-5.el6_4.x86_64 Installing ConsoleKit-0.4.1-3.el6.x86_64 Installing cvs-1.11.23-15.el6.x86_64 Installing jre-1.6.0_45-fcs.x86_64 warning: %post(jre-1.6.0_45-fcs.x86_64) scriptlet failed, exit status 5 Installing sgml-common-0.6.3-32.el6.noarch Installing nss-sysinit-3.14.3-4.el6_4.x86_64 Installing nss-3.14.3-4.el6_4.x86_64 Installing nss-tools-3.14.3-4.el6_4.x86_64 Installing openldap-2.4.23-32.el6_4.1.x86_64 Installing libuser-0.56.13-5.el6.x86_64 Installing postgresql90-libs-9.0.13-1PGDG.rhel6.x86_64 warning: postgresql90-libs-9.0.13-1PGDG.rhel6.x86_64: Header V4 DSA/SHA1 Signature, key ID 442df0f8: NOKEY Installing libcurl-7.19.7-37.el6_4.x86_64 Installing gnupg2-2.0.14-4.el6.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-32.el6.x86_64 Installing rpm-4.8.0-32.el6.x86_64 Installing net-snmp-libs-5.5-44.el6.4.1_APC.x86_64 Installing passwd-0.77-4.el6_2.2.x86_64 Installing sudo-1.8.6p3-7.el6.x86_64 Installing apr-util-ldap-1.3.9-3.el6_0.1.x86_64 Installing GConf2-2.28.0-6.el6.x86_64 Installing libgsf-1.14.15-5.el6.x86_64 Installing hicolor-icon-theme-0.11-1.1.el6.noarch Installing rpcbind-0.2.0-11.el6.x86_64 Installing m17n-lib-1.5.5-2.el6_1.1.x86_64 Installing libtasn1-2.3-3.el6_2.1.x86_64 Installing gnutls-2.8.5-10.el6_4.2.x86_64 Installing cups-libs-1.4.2-50.el6_4.5.x86_64 Installing sgpio-1.2.0.10-5.el6.x86_64 Installing pixman-0.26.2-5.el6_4.x86_64 Installing pkgconfig-0.23-9.1.el6.x86_64 Installing hdparm-9.16-3.4.el6.x86_64 Installing libevent-1.4.13-4.el6.x86_64 Installing libthai-0.1.12-3.el6.x86_64 Installing ethtool-3.5-1.el6.x86_64 Installing libaio-0.3.107-10.el6.x86_64 Installing pakchois-0.4-3.2.el6.x86_64 Installing plymouth-core-libs-0.8.3-27.el6.centos.x86_64 Installing mingetty-1.08-5.el6.x86_64 Installing libpcap-1.0.0-6.20091201git117cb5.el6.x86_64 Installing numactl-2.0.7-6.el6.x86_64 Installing libXau-1.0.6-4.el6.x86_64 Installing libxcb-1.8.1-1.el6.x86_64 Installing libX11-1.5.0-4.el6.x86_64 Installing libXrender-0.9.7-2.el6.x86_64 Installing libXext-1.3.1-2.el6.x86_64 Installing cairo-1.8.8-3.1.el6.x86_64 Installing libXpm-3.5.10-2.el6.x86_64 Installing libXfixes-5.0-3.el6.x86_64 Installing libXt-1.1.3-1.el6.x86_64 Installing libXmu-1.1.1-2.el6.x86_64 Installing libXft-2.3.1-2.el6.x86_64 Installing pango-1.28.1-7.el6_3.x86_64 Installing libXaw-1.0.11-2.el6.x86_64 Installing libotf-0.9.9-3.1.el6.x86_64 Installing libXdamage-1.1.3-4.el6.x86_64 Installing libXcursor-1.1.13-2.el6.x86_64 Installing libXrandr-1.4.0-1.el6.x86_64 Installing libXinerama-1.1.2-2.el6.x86_64 Installing libXi-1.6.1-3.el6.x86_64 Installing giflib-4.1.6-3.1.el6.x86_64 Installing libXcomposite-0.4.3-4.el6.x86_64 Installing gtk2-2.18.9-12.el6.x86_64 Installing hesiod-3.1.0-19.el6.x86_64 Installing libffi-3.0.5-3.2.el6.x86_64 Installing python-libs-2.6.6-37.el6_4.x86_64 Installing python-2.6.6-37.el6_4.x86_64 Installing rpm-python-4.8.0-32.el6.x86_64 Installing librsvg2-2.26.0-5.el6_1.1.0.1.centos.x86_64 Installing yum-metadata-parser-1.1.2-16.el6.x86_64 Installing dbus-python-0.83.0-6.1.el6.x86_64 Installing python-ethtool-0.6-3.el6.x86_64 Installing python-psycopg2-2.0.14-2.el6.x86_64 Installing python-iniparse-0.3.1-2.1.el6.noarch Installing pygpgme-0.1-18.20090824bzr68.el6.x86_64 Installing libproxy-bin-0.3.0-4.el6_3.x86_64 Installing libproxy-0.3.0-4.el6_3.x86_64 Installing libproxy-python-0.3.0-4.el6_3.x86_64 Installing python-smbios-2.2.28-3.el6.x86_64 Installing smbios-utils-python-2.2.28-3.el6.x86_64 Installing python-pycurl-7.19.0-8.el6.x86_64 Installing python-urlgrabber-3.9.1-8.el6.noarch Installing yum-plugin-fastestmirror-1.1.30-14.el6.noarch Installing yum-3.2.29-40.el6.centos.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 centos-release-6-4.el6.centos.10.x86_64 Installing policycoreutils-2.0.83-19.30.el6.x86_64 Installing iptables-1.4.7-9.el6.x86_64 Installing iproute-2.6.32-23.el6.x86_64 Installing iputils-20071127-17.el6_4.2.x86_64 Installing util-linux-ng-2.17.2-12.9.el6_4.3.x86_64 Installing initscripts-9.03.38-1.el6.centos.2.x86_64 Installing udev-147-2.46.el6.x86_64 Installing device-mapper-libs-1.02.77-9.el6.x86_64 Installing device-mapper-1.02.77-9.el6.x86_64 Installing device-mapper-event-libs-1.02.77-9.el6.x86_64 Installing httpd-2.2.15-29.el6.centos.x86_64 Installing device-mapper-event-1.02.77-9.el6.x86_64 Installing kpartx-0.4.9-64.el6_4.2.x86_64 Installing emacs-common-23.1-21.el6_2.3.x86_64 Installing rsyslog-5.8.10-7.el6_4.x86_64 Installing openssh-5.3p1-84.1.el6.x86_64 Installing samba-common-3.6.9-151.el6_4.1.x86_64 Installing samba-winbind-clients-3.6.9-151.el6_4.1.x86_64 Installing samba-winbind-3.6.9-151.el6_4.1.x86_64 Installing openssh-server-5.3p1-84.1.el6.x86_64 Installing dmraid-1.0.0.rc16-11.el6.x86_64 Installing dmraid-events-1.0.0.rc16-11.el6.x86_64 Installing lvm2-libs-2.02.98-9.el6.x86_64 Installing mod_ssl-2.2.15-29.el6.centos.x86_64 Installing cryptsetup-luks-libs-1.2.0-7.el6.x86_64 Installing cryptsetup-luks-1.2.0-7.el6.x86_64 Installing device-mapper-multipath-libs-0.4.9-64.el6_4.2.x86_64 Installing crda-1.1.1_2010.11.22-1.el6.x86_64 Installing wireless-tools-29-5.1.1.el6.x86_64 Installing python-iwlib-0.1-1.2.el6.x86_64 Installing libdrm-2.4.39-1.el6.x86_64 Installing plymouth-0.8.3-27.el6.centos.x86_64 Installing postgresql90-9.0.13-1PGDG.rhel6.x86_64 Installing postgresql90-server-9.0.13-1PGDG.rhel6.x86_64 Installing ntpdate-4.2.4p8-3.el6.centos.x86_64 Installing ntp-4.2.4p8-3.el6.centos.x86_64 Installing net-snmp-5.5-44.el6.4.1_APC.x86_64 Installing cyrus-sasl-2.1.23-13.el6_3.1.x86_64 Installing sendmail-8.14.4-8.el6.x86_64 Installing cronie-noanacron-1.4.4-7.el6.x86_64 Installing cronie-1.4.4-7.el6.x86_64 Installing crontabs-1.10-33.el6.noarch Installing sysstat-9.0.4-20.el6.x86_64 Installing atop-1.26-3.el6.x86_64 warning: atop-1.26-3.el6.x86_64: Header V3 RSA/SHA256 Signature, key ID 0608b895: NOKEY Installing usermode-1.102-3.el6.x86_64 Installing nfs-utils-lib-1.1.5-6.el6.x86_64 Installing nfs-utils-1.2.3-36.el6.x86_64 Installing iptables-ipv6-1.4.7-9.el6.x86_64 Installing system-config-firewall-base-1.2.27-5.el6.noarch Installing selinux-policy-3.7.19-195.el6_4.12.noarch Installing kbd-misc-1.15-11.el6.noarch Installing kbd-1.15-11.el6.x86_64 Installing hal-info-20090716-3.1.el6.noarch Installing hal-0.5.14-11.el6.x86_64 Installing pm-utils-1.2.5-10.el6.x86_64 Installing dracut-004-303.el6.noarch Installing dracut-kernel-004-303.el6.noarch Installing kernel-2.6.32-358.18.1.el6.x86_64 Installing irqbalance-1.0.4-4.el6_4.x86_64 Installing selinux-policy-targeted-3.7.19-195.el6_4.12.noarch Installing system-config-firewall-tui-1.2.27-5.el6.noarch Installing system-config-network-tui-1.6.0.el6.2-1.el6.noarch Installing device-mapper-multipath-0.4.9-64.el6_4.2.x86_64 Installing lvm2-2.02.98-9.el6.x86_64 Installing cifs-utils-4.8.1-18.el6.x86_64 Installing samba-client-3.6.9-151.el6_4.1.x86_64 Installing openssh-clients-5.3p1-84.1.el6.x86_64 Installing emacs-nox-23.1-21.el6_2.3.x86_64 Installing emacs-23.1-21.el6_2.3.x86_64 Installing mod_python-3.3.1-14.el6.1.x86_64 Installing parted-2.1-19.el6.x86_64 Installing mdadm-3.2.5-4.el6_4.2.x86_64 Installing acpid-1.0.10-2.1.el6.x86_64 Installing dhclient-4.1.1-34.P1.el6_4.1.x86_64 Installing dhcp-4.1.1-34.P1.el6_4.1.x86_64 Installing quota-3.17-18.el6.x86_64 Installing libcgroup-0.37-7.2.el6_4.x86_64 Installing prelink-0.4.6-3.1.el6_4.x86_64 Installing authconfig-6.1.12-13.el6.x86_64 Installing ntsysv-1.3.49.3-2.el6_4.1.x86_64 Installing smbios-utils-2.2.28-3.el6.x86_64 Installing neon-0.29.3-3.el6_4.x86_64 Installing audit-libs-python-2.2-2.el6.x86_64 Installing python-crypto-2.0.1-22.el6.x86_64 Installing pexpect-2.3-6.el6.noarch Installing pyxf86config-0.3.37-7.1.el6.x86_64 Installing libuser-python-0.56.13-5.el6.x86_64 Installing grub-0.97-81.el6.x86_64 Installing libselinux-python-2.0.94-5.3.el6_4.1.x86_64 Installing libxml2-python-2.7.6-12.el6_4.1.x86_64 Installing python-sqlite2-2.3.5-2.el6.x86_64 Installing gettext-0.17-16.el6.x86_64 Installing vim-enhanced-7.2.411-1.8.el6.x86_64 Installing gd-2.0.35-11.el6.x86_64 Installing tcpdump-4.0.0-3.20090921gitdf3cb4.2.el6.x86_64 Installing net-snmp-utils-5.5-44.el6.4.1_APC.x86_64 Installing man-1.6f-32.el6.x86_64 Installing dirmngr-1.0.3-4.el6.x86_64 Installing bind-utils-9.8.2-0.17.rc1.el6_4.6.x86_64 Installing wget-1.12-1.8.el6.x86_64 Installing at-3.1.10-43.el6_2.1.x86_64 Installing psacct-6.3.2-63.el6_3.3.x86_64 Installing elfutils-0.152-1.el6.x86_64 Installing lm_sensors-3.1.1-17.el6.x86_64 Installing gpm-1.20.6-12.el6.x86_64 Installing efibootmgr-0.5.4-10.el6.x86_64 Installing tmpwatch-2.9.16-4.el6.x86_64 Installing cyrus-sasl-plain-2.1.23-13.el6_3.1.x86_64 Installing mlocate-0.22.2-4.el6.x86_64 Installing libxslt-1.1.26-2.el6_3.1.x86_64 Installing unzip-6.0-1.el6.x86_64 Installing lockdev-1.0.1-18.el6.x86_64 Installing lsof-4.82-4.el6.x86_64 Installing aspell-0.60.6-12.el6.x86_64 Installing hunspell-1.2.8-16.el6.x86_64 Installing rsync-3.0.6-9.el6.x86_64 Installing ftp-0.17-53.el6.x86_64 Installing bc-1.06.95-1.el6.x86_64 Installing isomd5sum-1.0.6-1.el6.x86_64 Installing ed-1.1-3.3.el6.x86_64 Installing attr-2.4.44-7.el6.x86_64 Installing netbotz_botzware-2.6.2-0.noarch Installing telnet-0.17-47.el6_3.1.x86_64 Installing zip-3.0-1.el6.x86_64 Installing eject-2.1.5-17.el6.x86_64 Installing setserial-2.17-25.el6.x86_64 Installing libsysfs-2.1.0-7.el6.x86_64 Installing libXdmcp-1.1.1-3.el6.x86_64 Installing dos2unix-3.1-37.el6.x86_64 Installing traceroute-2.0.14-2.el6.x86_64 Installing compat-expat1-1.95.8-8.el6.x86_64 Installing rootfiles-8.1-6.1.el6.noarch Installing Lib_Utils-1.00-08.noarch Installing MegaCli-8.01.06-1.i386 Installing netbotz_central-7.2.4-42.noarch grep: /etc/modprobe.d/apc.conf: No such file or directory Installing dcexpert_ui-7.2.4-42.noarch *** FINISHED INSTALLING PACKAGES *** # install.log.syslog <86>Jun 6 11:09:44 groupadd[1571]: group added to /etc/group: name=dbus, GID=81 <86>Jun 6 11:09:44 groupadd[1571]: group added to /etc/gshadow: name=dbus <86>Jun 6 11:09:44 groupadd[1571]: new group: name=dbus, GID=81 <86>Jun 6 11:09:44 useradd[1575]: new user: name=dbus, UID=81, GID=81, home=/, shell=/sbin/nologin <86>Jun 6 11:09:50 groupadd[1609]: group added to /etc/group: name=floppy, GID=19 <86>Jun 6 11:09:50 groupadd[1609]: group added to /etc/gshadow: name=floppy <86>Jun 6 11:09:50 groupadd[1609]: new group: name=floppy, GID=19 <86>Jun 6 11:09:50 groupadd[1614]: group added to /etc/group: name=vcsa, GID=69 <86>Jun 6 11:09:50 groupadd[1614]: group added to /etc/gshadow: name=vcsa <86>Jun 6 11:09:50 groupadd[1614]: new group: name=vcsa, GID=69 <86>Jun 6 11:09:50 useradd[1619]: new user: name=vcsa, UID=69, GID=69, home=/dev, shell=/sbin/nologin <86>Jun 6 11:09:50 groupadd[1625]: group added to /etc/group: name=utmp, GID=22 <86>Jun 6 11:09:50 groupadd[1625]: group added to /etc/gshadow: name=utmp <86>Jun 6 11:09:50 groupadd[1625]: new group: name=utmp, GID=22 <86>Jun 6 11:09:50 groupadd[1629]: group added to /etc/group: name=utempter, GID=35 <86>Jun 6 11:09:50 groupadd[1629]: group added to /etc/gshadow: name=utempter <86>Jun 6 11:09:50 groupadd[1629]: new group: name=utempter, GID=35 <86>Jun 6 11:10:14 groupadd[1896]: group added to /etc/group: name=rpc, GID=32 <86>Jun 6 11:10:14 groupadd[1896]: group added to /etc/gshadow: name=rpc <86>Jun 6 11:10:14 groupadd[1896]: new group: name=rpc, GID=32 <86>Jun 6 11:10:14 useradd[1900]: new user: name=rpc, UID=32, GID=32, home=/var/cache/rpcbind, shell=/sbin/nologin <86>Jun 6 11:10:25 groupadd[2009]: group added to /etc/group: name=cdrom, GID=11 <86>Jun 6 11:10:25 groupadd[2009]: group added to /etc/gshadow: name=cdrom <86>Jun 6 11:10:25 groupadd[2009]: new group: name=cdrom, GID=11 <86>Jun 6 11:10:25 groupadd[2014]: group added to /etc/group: name=tape, GID=33 <86>Jun 6 11:10:25 groupadd[2014]: group added to /etc/gshadow: name=tape <86>Jun 6 11:10:25 groupadd[2014]: new group: name=tape, GID=33 <86>Jun 6 11:10:25 groupadd[2019]: group added to /etc/group: name=dialout, GID=18 <86>Jun 6 11:10:25 groupadd[2019]: group added to /etc/gshadow: name=dialout <86>Jun 6 11:10:25 groupadd[2019]: new group: name=dialout, GID=18 <86>Jun 6 11:10:25 groupadd[2035]: group added to /etc/group: name=apache, GID=48 <86>Jun 6 11:10:25 groupadd[2035]: group added to /etc/gshadow: name=apache <86>Jun 6 11:10:25 groupadd[2035]: new group: name=apache, GID=48 <86>Jun 6 11:10:25 useradd[2040]: new user: name=apache, UID=48, GID=48, home=/var/www, shell=/sbin/nologin <86>Jun 6 11:10:34 groupadd[2106]: group added to /etc/group: name=wbpriv, GID=88 <86>Jun 6 11:10:34 groupadd[2106]: group added to /etc/gshadow: name=wbpriv <86>Jun 6 11:10:34 groupadd[2106]: new group: name=wbpriv, GID=88 <86>Jun 6 11:10:35 groupadd[2122]: group added to /etc/group: name=sshd, GID=74 <86>Jun 6 11:10:35 groupadd[2122]: group added to /etc/gshadow: name=sshd <86>Jun 6 11:10:35 groupadd[2122]: new group: name=sshd, GID=74 <86>Jun 6 11:10:35 useradd[2127]: new user: name=sshd, UID=74, GID=74, home=/var/empty/sshd, shell=/sbin/nologin <86>Jun 6 11:10:37 groupadd[2176]: group added to /etc/group: name=postgres, GID=26 <86>Jun 6 11:10:37 groupadd[2176]: group added to /etc/gshadow: name=postgres <86>Jun 6 11:10:37 groupadd[2176]: new group: name=postgres, GID=26 <86>Jun 6 11:10:37 useradd[2180]: new user: name=postgres, UID=26, GID=26, home=/var/lib/pgsql, shell=/bin/bash <86>Jun 6 11:10:38 groupadd[2193]: group added to /etc/group: name=ntp, GID=38 <86>Jun 6 11:10:38 groupadd[2193]: group added to /etc/gshadow: name=ntp <86>Jun 6 11:10:38 groupadd[2193]: new group: name=ntp, GID=38 <86>Jun 6 11:10:38 useradd[2197]: new user: name=ntp, UID=38, GID=38, home=/etc/ntp, shell=/sbin/nologin <86>Jun 6 11:10:39 groupadd[2212]: group added to /etc/group: name=saslauth, GID=76 <86>Jun 6 11:10:39 groupadd[2212]: group added to /etc/gshadow: name=saslauth <86>Jun 6 11:10:39 groupadd[2212]: new group: name=saslauth, GID=76 <86>Jun 6 11:10:39 useradd[2217]: new user: name=saslauth, UID=499, GID=76, home=/var/empty/saslauth, shell=/sbin/nologin <86>Jun 6 11:10:39 groupadd[2226]: group added to /etc/group: name=mailnull, GID=47 <86>Jun 6 11:10:39 groupadd[2226]: group added to /etc/gshadow: name=mailnull <86>Jun 6 11:10:39 groupadd[2226]: new group: name=mailnull, GID=47 <86>Jun 6 11:10:39 useradd[2231]: new user: name=mailnull, UID=47, GID=47, home=/var/spool/mqueue, shell=/sbin/nologin <86>Jun 6 11:10:39 groupadd[2237]: group added to /etc/group: name=smmsp, GID=51 <86>Jun 6 11:10:39 groupadd[2237]: group added to /etc/gshadow: name=smmsp <86>Jun 6 11:10:39 groupadd[2237]: new group: name=smmsp, GID=51 <86>Jun 6 11:10:39 useradd[2242]: new user: name=smmsp, UID=51, GID=51, home=/var/spool/mqueue, shell=/sbin/nologin <21>Jun 6 11:10:40 sendmail[2259]: alias database /etc/aliases rebuilt by root <22>Jun 6 11:10:40 sendmail[2259]: /etc/aliases: 76 aliases, longest 10 bytes, 765 bytes total <86>Jun 6 11:10:40 useradd[2269]: new group: name=rpcuser, GID=29 <86>Jun 6 11:10:40 useradd[2269]: new user: name=rpcuser, UID=29, GID=29, home=/var/lib/nfs, shell=/sbin/nologin <86>Jun 6 11:10:40 groupadd[2278]: group added to /etc/group: name=nfsnobody, GID=65534 <86>Jun 6 11:10:40 groupadd[2278]: group added to /etc/gshadow: name=nfsnobody <86>Jun 6 11:10:40 groupadd[2278]: new group: name=nfsnobody, GID=65534 <86>Jun 6 11:10:40 useradd[2285]: new user: name=nfsnobody, UID=65534, GID=65534, home=/var/lib/nfs, shell=/sbin/nologin <86>Jun 6 11:10:43 groupadd[2308]: group added to /etc/group: name=haldaemon, GID=68 <86>Jun 6 11:10:43 groupadd[2308]: group added to /etc/gshadow: name=haldaemon <86>Jun 6 11:10:43 groupadd[2308]: new group: name=haldaemon, GID=68 <86>Jun 6 11:10:43 useradd[2313]: new user: name=haldaemon, UID=68, GID=68, home=/, shell=/sbin/nologin <86>Jun 6 11:10:43 useradd[2313]: add 'haldaemon' to group 'haldaemon' <86>Jun 6 11:10:43 useradd[2313]: add 'haldaemon' to shadow group 'haldaemon' <86>Jun 6 11:11:38 groupadd[2368]: group added to /etc/group: name=dhcpd, GID=177 <86>Jun 6 11:11:38 groupadd[2368]: group added to /etc/gshadow: name=dhcpd <86>Jun 6 11:11:38 groupadd[2368]: new group: name=dhcpd, GID=177 <86>Jun 6 11:11:38 useradd[2373]: new user: name=dhcpd, UID=177, GID=177, home=/, shell=/sbin/nologin <86>Jun 6 11:11:39 groupadd[2390]: group added to /etc/group: name=cgred, GID=499 <86>Jun 6 11:11:39 groupadd[2390]: group added to /etc/gshadow: name=cgred <86>Jun 6 11:11:39 groupadd[2390]: new group: name=cgred, GID=499 <86>Jun 6 11:11:42 groupadd[2409]: group added to /etc/group: name=tcpdump, GID=72 <86>Jun 6 11:11:42 groupadd[2409]: group added to /etc/gshadow: name=tcpdump <86>Jun 6 11:11:42 groupadd[2409]: new group: name=tcpdump, GID=72 <86>Jun 6 11:11:42 useradd[2413]: new user: name=tcpdump, UID=72, GID=72, home=/, shell=/sbin/nologin <86>Jun 6 11:11:44 groupadd[2439]: group added to /etc/group: name=slocate, GID=21 <86>Jun 6 11:11:44 groupadd[2439]: group added to /etc/gshadow: name=slocate <86>Jun 6 11:11:44 groupadd[2439]: new group: name=slocate, GID=21 <86>Jun 6 11:12:21 useradd[2857]: new group: name=apcreset, GID=500 <86>Jun 6 11:12:21 useradd[2857]: new user: name=apcreset, UID=500, GID=500, home=/home/apcreset, shell=/bin/bash <86>Jun 6 11:12:22 useradd[2867]: new group: name=apcinfo, GID=501 <86>Jun 6 11:12:22 useradd[2867]: new user: name=apcinfo, UID=501, GID=501, home=/home/apcinfo, shell=/bin/bash <86>Jun 6 11:12:22 useradd[2877]: new group: name=apcsetup, GID=502 <86>Jun 6 11:12:22 useradd[2877]: new user: name=apcsetup, UID=502, GID=502, home=/home/apcsetup, shell=/bin/bash <86>Jun 6 11:12:22 su: pam_unix(su:session): session opened for user apcreset by (uid=0) <86>Jun 6 11:12:22 su: pam_unix(su:session): session closed for user apcreset <86>Jun 6 11:12:22 su: pam_unix(su:session): session opened for user apcinfo by (uid=0) <86>Jun 6 11:12:22 su: pam_unix(su:session): session closed for user apcinfo <86>Jun 6 11:12:22 su: pam_unix(su:session): session opened for user apcsetup by (uid=0) <86>Jun 6 11:12:22 su: pam_unix(su:session): session closed for user apcsetup There is only one NIC found, therefore ifcfg-eth1 will be removed.