diff options
| author | Joel Andres Granados <jgranado@redhat.com> | 2007-11-22 15:11:43 +0100 |
|---|---|---|
| committer | Joel Andres Granados <jgranado@redhat.com> | 2007-11-22 15:11:43 +0100 |
| commit | 9a6c6d665c7d9c9da78ea5488bcd4b8b7f7df211 (patch) | |
| tree | 8ca389e60ff2d894bad023454430268ce259c376 /plugins/sample3Plugin/plugin | |
| parent | 83d9690c02e9189ec8ceddc92b2c400f0b1521cb (diff) | |
| download | firstaidkit-9a6c6d665c7d9c9da78ea5488bcd4b8b7f7df211.tar.gz firstaidkit-9a6c6d665c7d9c9da78ea5488bcd4b8b7f7df211.tar.xz firstaidkit-9a6c6d665c7d9c9da78ea5488bcd4b8b7f7df211.zip | |
Change all references from init to prepare.
Change all references from purge to clean.
Log a warning when abstract functions are not used.
Diffstat (limited to 'plugins/sample3Plugin/plugin')
| -rwxr-xr-x | plugins/sample3Plugin/plugin | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/sample3Plugin/plugin b/plugins/sample3Plugin/plugin index 9cf7e03..c3099a5 100755 --- a/plugins/sample3Plugin/plugin +++ b/plugins/sample3Plugin/plugin @@ -21,14 +21,14 @@ else fi -if [ $TASK = "init" ]; then - echo init true +if [ $TASK = "prepare" ]; then + echo prepare true fi if [ $TASK = "diagnose" ]; then echo diagnose false fi -if [ $TASK = "purge" ]; then - echo purge true +if [ $TASK = "clean" ]; then + echo clean true fi if [ $TASK = "fix" ]; then echo fix true |
