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
b0437f19
Verified
Commit
b0437f19
authored
6 years ago
by
Adam Lewenberg
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into puppet5
Conflicts: NEWS
parents
1416e38e
4f97536f
No related branches found
No related tags found
1 merge request
!7
Puppet5 lonlone
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
NEWS
+9
-0
9 additions, 0 deletions
NEWS
manifests/postfix.pp
+1
-1
1 addition, 1 deletion
manifests/postfix.pp
manifests/wallet/keytab.pp
+8
-1
8 additions, 1 deletion
manifests/wallet/keytab.pp
templates/duo/duo.erb
+4
-4
4 additions, 4 deletions
templates/duo/duo.erb
with
22 additions
and
6 deletions
NEWS
+
9
−
0
View file @
b0437f19
...
...
@@ -17,6 +17,15 @@ unreleased (207x-xx-xx)
[several] change 'crit "stuff"' to 'crit("stuff")' to make Puppet 5
happy. [adamhl]
[postfix] Change the sender address for root mail from
"root@${::hostname}" to "root@${::fqdn}". This is needed by newer
versions of postfix and makes more sense anyway.
[wallet] Make wallet ketyab use the correct path for ktutil.
[duo] Change apt pin file to point to codename rather than archive
name. [adamhl]
[out_of_date] Add some parameters to the interface to make it easier
to point at different out-of-date servers. [adamhl]
...
...
This diff is collapsed.
Click to expand it.
manifests/postfix.pp
+
1
−
1
View file @
b0437f19
...
...
@@ -82,7 +82,7 @@ class base::postfix (
# Have mail from root@stanford.edu come from root at the local system
base::postfix::sender
{
'root@stanford.edu'
:
ensure
=>
"root@
${::
hostname
}
"
;
ensure
=>
"root@
${::
fqdn
}
"
;
}
# We used to disable and stop sendmail here on Red Hat, but this doesn't
...
...
This diff is collapsed.
Click to expand it.
manifests/wallet/keytab.pp
+
8
−
1
View file @
b0437f19
...
...
@@ -8,12 +8,19 @@ define base::wallet::keytab(
$heimdal
=
false
)
{
include
base::wallet::client
if
(
$::lsbdistcodename
==
'wheezy'
)
{
$ktutil_exe
=
'/usr/sbin/ktutil'
}
else
{
$ktutil_exe
=
'/usr/bin/ktutil'
}
$wallet_opts
=
"-f '
$path
' get keytab '
$name
'"
exec
{
"wallet
$wallet_opts
"
:
path
=>
'/bin:/usr/bin:/usr/local/bin:/usr/kerberos/bin'
,
command
=>
"
${kstart_cmd}
wallet
${wallet_opts}
"
,
unless
=>
$heimdal
?
{
true
=>
"
/usr/sbin/
ktutil -k '
$path
' list | grep -i -q '
$name
'"
,
true
=>
"
${
ktutil
_exe}
-k '
$path
' list | grep -i -q '
$name
'"
,
false
=>
"klist -k '
$path
' | grep -i -q '
$name
'"
,
},
require
=>
[
Package
[
'kstart'
],
Package
[
'wallet-client'
]
],
...
...
This diff is collapsed.
Click to expand it.
templates/duo/duo.erb
+
4
−
4
View file @
b0437f19
...
...
@@ -5,17 +5,17 @@
# in main don't have that, so we need to use the backported package we build.
Package: libduo-dev
Pin: release
a
=
<%=
lsbdistcodename
%>
-backports
Pin: release
n
=
<%=
lsbdistcodename
%>
-backports
Pin-Priority: 995
Package: libduo3
Pin: release
a
=
<%=
lsbdistcodename
%>
-backports
Pin: release
n
=
<%=
lsbdistcodename
%>
-backports
Pin-Priority: 995
Package: libpam-duo
Pin: release
a
=
<%=
lsbdistcodename
%>
-backports
Pin: release
n
=
<%=
lsbdistcodename
%>
-backports
Pin-Priority: 995
Package: login-duo
Pin: release
a
=
<%=
lsbdistcodename
%>
-backports
Pin: release
n
=
<%=
lsbdistcodename
%>
-backports
Pin-Priority: 995
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