-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
(SIMP-7113) Remove clamav from default class list (#46)
- Updated the README to clarify what simp_options::clamav actually does and to note that clamav was removed from the SIMP's default class list in SIMP 6.5. - Set the default for clamav::set_schedule::enable to lookup clamav::enable, so that class will remove the clamav schedule if clamav is disabled. SIMP-7113 #close SIMP-7161 #close SIMP-7163 #close
- Loading branch information
1 parent
77511ce
commit 3601ec1
Showing
6 changed files
with
89 additions
and
33 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
* Tue Oct 29 2019 Jeanne Greulich <[email protected]> - 6.4.0-0 | ||
- Updated the README to clarify what simp_options::clamav actually does | ||
and to note that clamav was removed from the SIMP's default class list | ||
in SIMP 6.5. | ||
- Set the default for clamav::set_schedule::enable to lookup clamav::enable, | ||
so that class will remove the clamav schedule if clamav is disabled. | ||
|
||
* Tue Sep 24 2019 Trevor Vaughan <[email protected]> - 6.4.0-0 | ||
- Disable rsync pulls by default | ||
- Update README.md | ||
|
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 |
---|---|---|
|
@@ -42,7 +42,7 @@ | |
# @author Trevor Vaughan <[email protected]> | ||
# | ||
class clamav::set_schedule ( | ||
Boolean $enable = true, | ||
Boolean $enable = simplib::lookup('clamav::enable', { 'default_value' => true}), | ||
Simplib::Cron::Minute $minute = '32', | ||
Simplib::Cron::Hour $hour = '5', | ||
Simplib::Cron::MonthDay $monthday = '*', | ||
|
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