aboutsummaryrefslogtreecommitdiff
path: root/tools/bin/centos6-32
diff options
context:
space:
mode:
Diffstat (limited to 'tools/bin/centos6-32')
-rw-r--r--tools/bin/centos6-32/fedora-firefox4.repo7
-rw-r--r--tools/bin/centos6-32/google.repo6
-rw-r--r--tools/bin/centos6-32/uic.ks88
3 files changed, 101 insertions, 0 deletions
diff --git a/tools/bin/centos6-32/fedora-firefox4.repo b/tools/bin/centos6-32/fedora-firefox4.repo
new file mode 100644
index 0000000..e2822f3
--- /dev/null
+++ b/tools/bin/centos6-32/fedora-firefox4.repo
@@ -0,0 +1,7 @@
+# Place this file in your /etc/yum.repos.d/ directory
+
+[fedora-firefox4]
+name=Firefox 4 Web Browser
+baseurl=http://repos.fedorapeople.org/repos/spot/firefox4/fedora-14/$basearch/
+enabled=1
+gpgcheck=0 \ No newline at end of file
diff --git a/tools/bin/centos6-32/google.repo b/tools/bin/centos6-32/google.repo
new file mode 100644
index 0000000..46278c5
--- /dev/null
+++ b/tools/bin/centos6-32/google.repo
@@ -0,0 +1,6 @@
+[google-chrome]
+name=google-chrome - 32-bit
+baseurl=http://dl.google.com/linux/chrome/rpm/stable/i386
+enabled=1
+gpgcheck=1
+gpgkey=https://dl-ssl.google.com/linux/linux_signing_key.pub \ No newline at end of file
diff --git a/tools/bin/centos6-32/uic.ks b/tools/bin/centos6-32/uic.ks
new file mode 100644
index 0000000..39fa8d1
--- /dev/null
+++ b/tools/bin/centos6-32/uic.ks
@@ -0,0 +1,88 @@
+install
+reboot
+text
+url --url=http://monk.galois.com/centos/6/os/i386/
+lang en_US.UTF-8
+keyboard us
+network --device eth0 --bootproto dhcp
+rootpw --iscrypted O2gCsA1aW90jA
+firewall --disabled
+authconfig --enableshadow
+selinux --permissive
+timezone --utc America/Los_Angeles
+services --enabled ntpd
+
+# disk work
+bootloader --location=mbr --append="crashkernel=auto console=tty0 console=ttyS2,115200n8"
+clearpart --all --initlabel
+
+part /boot --fstype=ext3 --size=300 --ondisk=sda --asprimary
+part swap --fstype=swap --size=2048 --ondisk=sda --asprimary
+part / --fstype=ext3 --size=1 --ondisk=sda --asprimary --grow
+
+repo --name="CentOS" --baseurl=http://monk.galois.com/centos/6/os/i386/ --cost=100
+# repo --name="fedora-firefox4" --baseurl=http://bootstrap.galois.com/uic/build/centos6-32 --cost=90
+repo --name="google-chrome" --baseurl=http://bootstrap.galois.com/uic/build/centos6-32 --cost=90
+
+%packages
+@ Base
+@ Console internet tools
+@ Development Tools
+google-chrome-stable
+@ Networking Tools
+@ Server Platform
+@ Server Policy
+@ System administration tools
+logwatch
+ntp
+ntpdate
+sendmail
+sendmail-cf
+strace
+sudo
+zsh
+dstat
+git
+wget
+java-1.6.0-openjdk
+java-1.6.0-openjdk-devel
+# Needed for SSH X11 forwarding
+xorg-x11-xauth
+# To resolve broken font rendering issues
+dejavu-lgc-sans-fonts
+%end
+
+%post --erroronfail
+# Import the local CentOS repository settings
+cp /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.dist
+curl http://monk.galois.com/galois/ks/CentOS-6-Base.repo \
+ -s -o /etc/yum.repos.d/CentOS-Base.repo
+
+# Install EIC management scripts
+cd /root
+
+# This is an EIC-managed VM with a Hudson account
+git clone http://eic-conf.galois.com/eic-conf.git
+(cd eic-conf &&
+ bash run.sh eic-managed update-eic-conf hudson-account)
+
+# Install SSH public keys into the hudson, eicuser, and eicadmin accounts
+(cd eic-conf &&
+ bash inst-key.sh hudson cygnus &&
+ bash inst-key.sh hudson creswick &&
+ bash inst-key.sh hudson jstanley &&
+ bash inst-key.sh hudson trevor &&
+ bash inst-key.sh hudson trevor2 &&
+ bash inst-key.sh eicuser creswick &&
+ bash inst-key.sh eicuser jstanley &&
+ bash inst-key.sh eicuser trevor2 &&
+ bash inst-key.sh eicuser trevor &&
+ bash inst-key.sh eicadmin creswick &&
+ bash inst-key.sh eicadmin jstanley &&
+ bash inst-key.sh eicadmin trevor2 &&
+ bash inst-key.sh eicadmin trevor
+)
+
+#
+# eof
+#