Issue #14366 has been updated by Jeff McCune.

Also, a quick way to play around with the `master` branch and hack on the code 
is to do something like this; <https://gist.github.com/4618182> which is how I 
hack on Puppet and Facter in EC2.

<pre>
#! /bin/bash
#
sudo yum -y install git tmux zsh ruby-devel ruby-irb ruby-rdoc rubygems make gcc
cd ~
if ! [[ -f ~/.zshrc.local ]]; then
  echo 'export GEM_HOME="${HOME}"/.gems' > ~/.zshrc.local
  echo 'export PATH="${GEM_HOME}/bin:${PATH}"' >> ~/.zshrc.local
fi
eval "$(cat ~/.zshrc.local)"
gem install bundler --no-ri --no-rdoc
gem install rake --no-ri --no-rdoc
gem install hub --no-ri --no-rdoc
test -d src || mkdir src
cd src
test -d facter || hub clone puppetlabs/facter
test -d puppet || hub clone puppetlabs/puppet
test -d hiera || hub clone puppetlabs/hiera

(cd facter; bundle install --path vendor)

echo "All done!  Vim and your shell are setup, log back in and cd src/facter; 
bundle exec facter"
</pre>
----------------------------------------
Bug #14366: virtual => physical and is_virtual => false on EC2
https://projects.puppetlabs.com/issues/14366#change-81687

Author: Kevin O'Connor
Status: Needs More Information
Priority: Normal
Assignee: Ramin K
Category: cloud - ec2
Target version: 
Keywords: 
Branch: 
Affected Facter version: 1.6.8


As described:

    [root@production-web-d95fb6bf ~]# facter | grep -i virtual
    ec2_profile => default-paravirtual
    is_virtual => false
    virtual => physical
    [root@production-web-d95fb6bf ~]# facter --version
    1.6.8
    [root@production-web-d95fb6bf ~]# cat /etc/*-release
    Amazon Linux AMI release 2012.03

is_virtual should be true, right?


-- 
You have received this notification because you have either subscribed to it, 
or are involved in it.
To change your notification preferences, please click here: 
http://projects.puppetlabs.com/my/account

-- 
You received this message because you are subscribed to the Google Groups 
"Puppet Bugs" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
Visit this group at http://groups.google.com/group/puppet-bugs?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to