summaryrefslogtreecommitdiffstats
path: root/lib/puppet/rails/host.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/puppet/rails/host.rb')
-rw-r--r--lib/puppet/rails/host.rb8
1 files changed, 0 insertions, 8 deletions
diff --git a/lib/puppet/rails/host.rb b/lib/puppet/rails/host.rb
index fbf51c838..ff6fb8f83 100644
--- a/lib/puppet/rails/host.rb
+++ b/lib/puppet/rails/host.rb
@@ -17,8 +17,6 @@ class Puppet::Rails::Host < ActiveRecord::Base
:include => [ :param_names, :param_values ],
:dependent => :destroy
- acts_as_taggable
-
# If the host already exists, get rid of its objects
def self.clean(host)
if obj = self.find_by_name(host)
@@ -73,12 +71,6 @@ class Puppet::Rails::Host < ActiveRecord::Base
return host
end
- def tags=(tags)
- tags.each do |tag|
- self.tag_with tag
- end
- end
-
# Return the value of a fact.
def fact(name)
if fv = self.fact_values.find(:first, :conditions => "fact_names.name = '#{name}'")