Kept getting this error after enabling storeconfigs for puppetmaster:
StoreConfigs not supported without ActiveRecord 2.1 or higher
Turns out it could only work with ActiveRecord major version 2. Need to downgrade activerecord on this Ubuntu 10.04:
gem list:
activerecord (3.0.1)
gem install activerecord –version 2.3.5
gem list:
activerecord (3.0.1, 2.3.5)
# gem uninstall activerecord –version 3.0.1
Successfully uninstalled activerecord-3.0.1
activerecord (2.3.5)
# /etc/init.d/puppetmaster restart
* Restarting puppet configuration management tool master server [ OK ]
Advertisement