-
Notifications
You must be signed in to change notification settings - Fork 148
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- rpm -V --nomtime and .pyc files filtering - track_custom_modifications actor renamed to scan_custom_modifications - Using library function get_leapp_packages instead of custom list of rpms. - Changed the wording from 'your system' to 'the system' in checker.
- Loading branch information
1 parent
1dc9922
commit 55a6791
Showing
5 changed files
with
25 additions
and
18 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
8 changes: 4 additions & 4 deletions
8
.../actors/trackcustommodifications/actor.py → ...n/actors/scancustommodifications/actor.py
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,19 +1,19 @@ | ||
from leapp.actors import Actor | ||
from leapp.libraries.actor.trackcustommodifications import check_for_modifications | ||
from leapp.libraries.actor import scancustommodifications | ||
from leapp.models import CustomModifications | ||
from leapp.tags import FactsPhaseTag, IPUWorkflowTag | ||
|
||
|
||
class TrackCustomModificationsActor(Actor): | ||
class ScanCustomModificationsActor(Actor): | ||
""" | ||
Collects information about files in leapp directories that have been modified or newly added. | ||
""" | ||
|
||
name = 'track_custom_modifications_actor' | ||
name = 'scan_custom_modifications_actor' | ||
produces = (CustomModifications,) | ||
tags = (IPUWorkflowTag, FactsPhaseTag) | ||
|
||
def process(self): | ||
changed, custom = check_for_modifications() | ||
changed, custom = scancustommodifications.check_for_modifications() | ||
for msg in changed + custom: | ||
self.produce(msg) |
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