Sha256: b2132b4665572e274836864b0955ba83afee4638d542050234845abeda58095f
Contents?: true
Size: 1.33 KB
Versions: 2
Compression:
Stored size: 1.33 KB
Contents
# settings that will be shared between all scripts cat <<DATAEOF > "/etc/profile.d/veewee.sh" # stage 3 filename and full url # retrieve from Gentoo current autobuild txt - these change regularly build_arch="x86" build_proc="i686" stage3current=\`curl -s http://distfiles.gentoo.org/releases/\${build_arch}/autobuilds/latest-stage3-\${build_proc}.txt|grep -v "^#"\` export stage3url="http://distfiles.gentoo.org/releases/\${build_arch}/autobuilds/\${stage3current}" export stage3file=\${stage3current##*/} # these two (configuring the compiler) and the stage3 url can be changed to build a 32 bit system export accept_keywords="x86" export chost="i686-pc-linux-gnu" # kernel version to use export kernel_version="3.7.10" # timezone (as a subdirectory of /usr/share/zoneinfo) export timezone="UTC" # locale export locale="en_US.utf8" # chroot directory for the installation export chroot=/mnt/gentoo # ruby version, works only with ruby_source export ruby_version="1.9.3-p327" # number of cpus in the host system (to speed up make and for kernel config) export nr_cpus=$(</proc/cpuinfo grep processor|wc -l) # user passwords for password based ssh logins export password_root=vagrant export password_vagrant=vagrant # the public key for vagrants ssh export vagrant_ssh_key_url="https://raw.github.com/mitchellh/vagrant/master/keys/vagrant.pub" DATAEOF
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
veewee-0.3.10 | templates/gentoo-latest-i686/settings.sh |
veewee-0.3.9 | templates/gentoo-latest-i686/settings.sh |