-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(SIMP-4512) Improve pluginsync_on (#63)
Before this commit, `pluginsync_on` only synced facts and used many expensive `on()` methods that scaled poorly with both modules and hosts. This patch reimplements the method using a simple puppet manifest. It syncs all the assets a normal pluginsync would (including augeas lenses) and only executes a single `apply_manifest_on` per host. SIMP-4512 #close
- Loading branch information
1 parent
c90dce8
commit c8ab53f
Showing
3 changed files
with
19 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
module Simp; end | ||
|
||
module Simp::BeakerHelpers | ||
VERSION = '1.10.1' | ||
VERSION = '1.10.2' | ||
end |