Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
base
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
puppetpublic
base
Commits
8619f749
Commit
8619f749
authored
9 years ago
by
Bill MacAllister
Browse files
Options
Downloads
Patches
Plain Diff
base::ipmi: Don't attempt to run ipmievd on jessie
parent
11df91df
No related branches found
Branches containing commit
Tags
release/004.034
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+5
-4
5 additions, 4 deletions
NEWS
manifests/ipmi.pp
+16
-13
16 additions, 13 deletions
manifests/ipmi.pp
with
21 additions
and
17 deletions
NEWS
+
5
−
4
View file @
8619f749
UNRELEASED
(2015-0
3-??)
release/004.034
(2015-0
4-08)
[yumtools] minor fix for RHEL5 and yum plugins (jlent)
[yumtools] Minor fix for RHEL5 and yum plugins. (jlent)
UNRELEASED (2015-03-??)
[cron] Add parameter to base::cron to allow anacron package to be
[cron] Add parameter to base::cron to allow anacron package to be
installed (helpful for Ubuntu systems with ubuntu-desktop
installed (helpful for Ubuntu systems with ubuntu-desktop
package). (adamhl)
package). (adamhl)
[ipmi] Don't attempt to run ipmievd on jessie. It doesn't appear
to be available. (whm)
release/004.033 (2015-03-13)
release/004.033 (2015-03-13)
Modify the base::ssh::config::sshd define to allow the
Modify the base::ssh::config::sshd define to allow the
...
...
This diff is collapsed.
Click to expand it.
manifests/ipmi.pp
+
16
−
13
View file @
8619f749
...
@@ -44,19 +44,22 @@ class base::ipmi {
...
@@ -44,19 +44,22 @@ class base::ipmi {
ensure
=>
present
,
ensure
=>
present
,
require
=>
Base
::
Os
::
Kernel_module
[
'ipmi_si'
];
require
=>
Base
::
Os
::
Kernel_module
[
'ipmi_si'
];
}
}
service
{
'ipmievd'
:
# ipmievd not available on jessie
ensure
=>
running
,
if
$::lsbdistcodename
!=
'jessie'
{
name
=>
'ipmievd'
,
service
{
'ipmievd'
:
enable
=>
true
,
ensure
=>
running
,
hasstatus
=>
false
,
name
=>
'ipmievd'
,
status
=>
'pidof ipmievd'
,
enable
=>
true
,
require
=>
[
Base
::
Os
::
Kernel_module
[
'ipmi_devintf'
],
hasstatus
=>
false
,
File
[
'/etc/default/ipmievd'
]
status
=>
'pidof ipmievd'
,
],
require
=>
[
Base
::
Os
::
Kernel_module
[
'ipmi_devintf'
],
}
File
[
'/etc/default/ipmievd'
]
file
{
'/etc/default/ipmievd'
:
],
source
=>
'puppet:///modules/base/ipmi/etc/default/ipmievd'
,
}
notify
=>
Service
[
'ipmievd'
],
file
{
'/etc/default/ipmievd'
:
source
=>
'puppet:///modules/base/ipmi/etc/default/ipmievd'
,
notify
=>
Service
[
'ipmievd'
],
}
}
}
}
}
'RedHat'
:
{
'RedHat'
:
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment