File tree Expand file tree Collapse file tree 6 files changed +16
-42
lines changed Expand file tree Collapse file tree 6 files changed +16
-42
lines changed Original file line number Diff line number Diff line change @@ -7,8 +7,9 @@ project adheres to [Semantic Versioning](http://semver.org/).
7
7
- FIXED: forced secrets to override persistent values
8
8
- FIXED: atomicWrite to obey ownership & mode when content is the same
9
9
- FIXED: cfsystem_timer exceptions in some configurations
10
- - CHANED : to prune /opt/codingfuture/bin
10
+ - CHANGED : to prune /opt/codingfuture/bin
11
11
- CHANGED: Ubuntu instance to remove update-motd package
12
+ - CHANGED: got rid of historical cf-apt-update workaround
12
13
- NEW: 'silent' atomic file write API for temporary cases
13
14
14
15
## 1.2.0 (2018-12-09)
Original file line number Diff line number Diff line change 29
29
}
30
30
}
31
31
32
- stage { 'cf-apt-setup' :
33
- require => Stage[' setup' ],
34
- before => Stage[' main' ],
35
- }
36
-
37
- class { 'cfsystem::apt::update' :
38
- stage => ' cf-apt-setup' ,
39
- }
40
-
41
32
class { 'cfsystem::apt::puppetlabs' :
42
33
release => $puppet_release ,
43
- stage => ' cf-apt- setup' ,
34
+ stage => ' setup' ,
44
35
}
45
36
}
Original file line number Diff line number Diff line change 8
8
) {
9
9
assert_private()
10
10
11
- Exec[' cf-apt-update' ]
12
- -> package { ' puppetlabs-release' : ensure => absent }
11
+ package { 'puppetlabs-release' : ensure => absent }
13
12
-> package { ' puppetlabs-release-pc1' : ensure => absent }
14
13
-> package { ' puppet5-release' : ensure => latest }
15
14
# ->
18
17
# }
19
18
20
19
apt::source { 'puppet5' :
21
- location => ' http://apt.puppetlabs.com' ,
22
- release => $release ,
23
- repos => ' puppet5' ,
24
- pin => $cfsystem::apt_pin + 1,
25
- notify_update => false ,
26
- notify => Exec[' cf-apt-update' ],
20
+ location => ' http://apt.puppetlabs.com' ,
21
+ release => $release ,
22
+ repos => ' puppet5' ,
23
+ pin => $cfsystem::apt_pin + 1,
27
24
}
28
25
}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 5
5
6
6
# Please see README
7
7
class cfsystem::debian::aptconfig {
8
+ # Required by stretch/xenial
9
+ user { '_apt' :
10
+ ensure => present ,
11
+ home => ' /nonexistent' ,
12
+ shell => ' /bin/false' ,
13
+ gid => ' nogroup' ,
14
+ }
15
+
8
16
# Use for temporary mapping with new releases
9
17
# ---
10
18
if versioncmp($::facts [' operatingsystemrelease' ], ' 10' ) >= 0 {
Original file line number Diff line number Diff line change 7
7
class cfsystem::debian::cache (
8
8
$acng_patterns = {},
9
9
) {
10
- # Required by stretch/xenial
11
- user { '_apt' :
12
- ensure => present ,
13
- home => ' /nonexistent' ,
14
- shell => ' /bin/false' ,
15
- gid => ' nogroup' ,
16
- }
17
-
18
10
if $::cfsystem::add_repo_cacher {
19
11
$acng_patterns_def = {
20
12
' P' => [],
You can’t perform that action at this time.
0 commit comments