-
-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adds control group limits to ServiceLimits #36
Conversation
The Systemd::ServiceLimits Data Type has been enhanced with the set of Control Group limits available to Systemd. Closes voxpupuli#35
@trevor-vaughan thanks, looks good to me. |
Gemfile
Outdated
@@ -35,7 +35,7 @@ end | |||
if facterversion = ENV['FACTER_GEM_VERSION'] | |||
gem 'facter', facterversion, :require => false | |||
else | |||
gem 'facter', :require => false | |||
gem 'facter', '~> 2.4.0', :require => false |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Generally I like a note why it's pinned. I'm pretty sure that in this case it's because the facterdb has no facts for 2.5 yet, but when going over it you either want a note in git blame or a comment in the file.
@ekohl Reason 4,325 not to do things at midnight |
Gemfile
Outdated
@@ -35,7 +35,8 @@ end | |||
if facterversion = ENV['FACTER_GEM_VERSION'] | |||
gem 'facter', facterversion, :require => false | |||
else | |||
gem 'facter', :require => false | |||
# There are no facts in place for beaker > 2.4 in rspec-puppet-facts yet |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/beaker/facter/?
The Systemd::ServiceLimits Data Type has been enhanced with the set of
Control Group limits available to Systemd.
Closes #35