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

rfct: /etc/login.defs #91

Open
wants to merge 6 commits into
base: main
Choose a base branch
from

Commits on Oct 14, 2024

  1. ci: Add cargo t + cleanup

    actions-rs/toolchain is archived. Rust is currently installed on GitHub
    actions runners. So the action was replaced by using rustup to install a
    minimal profile.
    
    build and test staged were added.
    
    Updated all steps to the latest version
    max-ishere committed Oct 14, 2024
    Configuration menu
    Copy the full SHA
    419dc51 View commit details
    Browse the repository at this point in the history
  2. rfct: Replace login.defs regex with a custom parser

    The format is so simple that a custom parser would be much safer and
    faster than using regex. The original also should have used `^` instead
    of `\n`.
    
    This is one of the steps towards removing regex as a dependecy for this
    project and replacing it with parsers for the specific file formats.
    max-ishere committed Oct 14, 2024
    Configuration menu
    Copy the full SHA
    90645c2 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    4d0c091 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2024

  1. build: Configure login.defs location and defaults

    Add support for a different location of `/etc/login.defs` file and
    override the assumed defaults if the file is not present.
    max-ishere committed Oct 19, 2024
    Configuration menu
    Copy the full SHA
    1c24c05 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    6ec4ce0 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2024

  1. Configuration menu
    Copy the full SHA
    7f46d5f View commit details
    Browse the repository at this point in the history