summaryrefslogtreecommitdiff
path: root/spec/unit/provider/package/up2date_spec.rb
AgeCommit message (Collapse)AuthorFilesLines
2012-02-29Fix up2date spec for ruby 1.8.5Patrick Carlisle1-6/+8
2012-01-18Fixed #11888 - Changed providers to use osfamily fact.James Turnbull1-0/+22
Previously the up2date, redhat and systemd providers used the operatingsystem fact to select defaults and constraints. This often meant that new operating systems using the same providers had to be manually added to the list of supported operating systems This commit replaces the use of operatingsystem with osfamily meaning addition of new operating systems is now centralised in one place in Facter rather than requiring multiple updates. Tests supporting this have been added to prevent regressions.
2012-01-17(#11888) Revert 483a1d9 for 2.7.x onlyJeff McCune1-22/+0
This reverts commit 483a1d93a5e5c78f8f41f905d7aae896081c98f1, reversing changes made to c6667c50d3b49195685311575b46de1978c4dfd9. This revert is necessary because the change set includes API breaking changes in a patch version release of the product. The API breaking changes are that Puppet 2.7.x > 2.7.9 would require a different version of Facter than 2.7.x <= 2.7.9 if this change set were to be released. This commit should be reverted after 2.7.x merges up into master. That is to say, the revert itself should be reverted.
2012-01-11(#11888) Switch up2date,systemd,redhat providers to osfamily factJames Turnbull1-0/+22
Previously the up2date, redhat and systemd providers used the operatingsystem fact to select defaults and constraints. This often meant that new operating systems using the same providers had to be manually added to the list of supported operating systems. This commit replaces the use of operatingsystem with osfamily meaning addition of new operating systems is now centralised in one place in Facter rather than requiring multiple updates. Tests supporting this have been added to prevent regressions.