Metadata-Version: 2.4
Name: dargslan-grub-check
Version: 1.0.0
Summary: GRUB bootloader configuration checker — audit boot entries, kernel versions, and bootloader security
Author-email: Dargslan <info@dargslan.com>
License: MIT
Project-URL: Homepage, https://dargslan.com
Project-URL: Documentation, https://dargslan.com/blog
Project-URL: Repository, https://github.com/Dargslan
Project-URL: Free Cheat Sheets, https://dargslan.com/cheat-sheets
Project-URL: Linux & DevOps Books, https://dargslan.com/books
Keywords: grub,bootloader,boot,kernel,linux,sysadmin,devops,security
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: System :: Boot :: Init
Requires-Python: >=3.7
Description-Content-Type: text/markdown

# dargslan-grub-check

**GRUB Bootloader Configuration Checker** — Audit boot entries, installed kernels, UEFI/Secure Boot status, and bootloader security. Zero external dependencies.

[![PyPI version](https://img.shields.io/pypi/v/dargslan-grub-check)](https://pypi.org/project/dargslan-grub-check/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)

## Installation

```bash
pip install dargslan-grub-check
```

## CLI Usage

```bash
dargslan-grub report           # Full bootloader report
dargslan-grub entries          # Boot menu entries
dargslan-grub kernels          # Installed kernels
dargslan-grub defaults         # GRUB default settings
dargslan-grub mode             # UEFI/BIOS and Secure Boot
dargslan-grub issues           # Configuration issues
dargslan-grub json             # JSON output
```

## Python API

```python
from dargslan_grub_check import GrubCheck
gc = GrubCheck()
entries = gc.get_boot_entries()
kernels = gc.get_installed_kernels()
gc.print_report()
```

## More from Dargslan

- [Dargslan.com](https://dargslan.com) — Linux & DevOps eBook Store
- [Free Cheat Sheets](https://dargslan.com/cheat-sheets)
- [Blog & Tutorials](https://dargslan.com/blog)

## License

MIT — see [LICENSE](LICENSE)
