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
d2f34e8c
Commit
d2f34e8c
authored
9 years ago
by
Adam Lewenberg
Browse files
Options
Downloads
Patches
Plain Diff
release/004.049: fix logic issue with ping capability adjustment
parent
a9397814
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NEWS
+11
-6
11 additions, 6 deletions
NEWS
manifests/os/debian.pp
+1
-1
1 addition, 1 deletion
manifests/os/debian.pp
with
12 additions
and
7 deletions
NEWS
+
11
−
6
View file @
d2f34e8c
release/004.049 (2015-07-22)
[os] Small fix to the 'ping' capability adjustment: grep -v does not
return 0 on success, so change "onlyif" to "unless" (adamhl)
release/004.048 (2015-06-24)
[newsyslog] Change permissions of /var/log/btmp to '600' in RHEL
systems so that sshd stops complaining. This is because RHEL builds
of openssh are paranoid about the frequency that passwords are
systems so that sshd stops complaining. This is because RHEL builds
of openssh are paranoid about the frequency that passwords are
mistakenly entered as usernames. If the utmp group is compromised,
there could be enough context to get real account credentials (jlent)
[dns] Make dns_cache a class-level parameter, so that it can be set in
[dns] Make dns_cache a class-level parameter, so that it can be set in
Hiera (as base::dns::dns_cache) (akkornel)
[dns] Add support for Livermore, via Hiera. Set base::dns::livermore (in
[dns] Add support for Livermore, via Hiera. Set base::dns::livermore (in
Hiera) to true, and Livermore DNS gets added to resolv.conf (akkornel)
[dns] Add support for disabling Puppet management of resolv.conf, for
[dns] Add support for disabling Puppet management of resolv.conf, for
systems using DHCP (akkornel)
[remctl] Require remctl-server package be installed before installing
[remctl] Require remctl-server package be installed before installing
xinetd config (akkornel)
release/004.047 (2015-06-17)
...
...
This diff is collapsed.
Click to expand it.
manifests/os/debian.pp
+
1
−
1
View file @
d2f34e8c
...
...
@@ -149,7 +149,7 @@ class base::os::debian {
exec
{
'setcap ping'
:
path
=>
"/usr/bin:/usr/sbin:/bin:/sbin"
,
command
=>
'setcap cap_net_raw+ep /bin/ping'
,
o
nl
yif
=>
"getcap /bin/ping | grep -
v
'cap_net_raw+ep'"
,
u
nl
ess
=>
"getcap /bin/ping | grep -
q
'cap_net_raw+ep'"
,
}
}
...
...
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