Skip to content

Commit

Permalink
Resolves voxpupuli#1090 Stage plugin before deleting existing plugin,…
Browse files Browse the repository at this point in the history
… remove, then move
  • Loading branch information
zoojar committed Mar 21, 2024
1 parent 66938db commit c4416b8
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
12 changes: 9 additions & 3 deletions manifests/plugin.pp
Original file line number Diff line number Diff line change
Expand Up @@ -182,12 +182,12 @@
$checksum_type = undef
}

exec { "force ${plugin}-${version}":
command => "/bin/rm -rf ${jenkins::plugin_dir}/${plugin}",
exec { "force staged ${plugin}-${version}":
command => "/bin/rm -rf ${jenkins::plugin_dir}/${plugin}.staged",
}
-> archive { $plugin:
source => $download_url,
path => "${jenkins::plugin_dir}/${plugin}",
path => "${jenkins::plugin_dir}/${plugin}.staged",
checksum_verify => $checksum_verify,
checksum => $checksum,
checksum_type => $checksum_type,
Expand All @@ -197,6 +197,12 @@
require => $plugindir,
notify => $notify,
}
-> exec { "force ${plugin}-${version}":
command => "/bin/rm -rf ${jenkins::plugin_dir}/${plugin}",
}
-> exec { "stage ${plugin}-${version}":
command => "/bin/mv -f ${jenkins::plugin_dir}/${plugin}.staged ${jenkins::plugin_dir}/${plugin}",
}
$archive_require = Archive[$plugin]
} else {
$archive_require = undef
Expand Down
2 changes: 1 addition & 1 deletion spec/defines/jenkins_plugin_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
it do
is_expected.to contain_archive("#{title}.hpi").with(
source: "#{plugin_host}/latest/myplug.hpi",
path: "#{pdir}/#{title}.hpi",
path: "#{pdir}/#{title}.hpi.staged",
cleanup: false,
extract: false
).that_requires("File[#{pdir}]").
Expand Down

0 comments on commit c4416b8

Please sign in to comment.