Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix PurgePackage raising error when package is not found. #172

Closed
wants to merge 2 commits into from

Commits on May 8, 2024

  1. Fix PurgePackage raising error when package is not found.

    Current behavior:
    
    ```
    110d05e4281: Scheduling component crontab ...
    110d05e4281 > Filebeat > PurgePackage('filebeat')
    ERROR: nix-env --query filebeat
        Return code: 1
    STDOUT
    
    STDERR
    error: selector 'filebeat' matches no derivations
    
    110d05e4281 > CronTab > InstallCrontab
    ```
    
    Expected behaviour (achieved by this fix):
    
    ```
    110d05e4281: Scheduling component crontab ...
    110d05e4281 > Filebeat > PurgePackage('filebeat')
    Could not find package to purge: filebeat
    110d05e4281 > CronTab > InstallCrontab
    ```
    sweh authored May 8, 2024
    Configuration menu
    Copy the full SHA
    5ba9bb5 View commit details
    Browse the repository at this point in the history

Commits on May 13, 2024

  1. Update CHANGES.md

    sweh authored May 13, 2024
    Configuration menu
    Copy the full SHA
    4f6aa76 View commit details
    Browse the repository at this point in the history