Renames the package and all artifacts to authforge to drop the
distro-specific prefix, since the roadmap targets Ubuntu + Debian +
KDE + eventually Fedora (option C in the design).
- deb packages: authforge, authforge-{daemon,pam,cli,gui,gnome-integration}
- binaries: authforged, authforgectl, authforge (GUI)
- D-Bus name: io.dangerousthings.AuthForge
- PAM module: pam_authforge_pending.so
- Paths: /etc/authforge/, /var/lib/authforge/, /usr/share/pam-configs/authforge
- PPA: ppa:dangerousthings/authforge
Filesystem path /home/work/VSCodeProjects/ubuntu_fido/ left as-is for
historical reference; can rename later via git mv at the dir level.
Verified: cargo build/test/clippy/fmt clean, pam builds, gui builds,
all 5 debs produced.
56 lines
1.9 KiB
Plaintext
56 lines
1.9 KiB
Plaintext
Source: authforge
|
|
Section: admin
|
|
Priority: optional
|
|
Maintainer: Dangerous Things <ops@dangerousthings.com>
|
|
Build-Depends:
|
|
debhelper-compat (= 13),
|
|
cargo,
|
|
rustc (>= 1.78),
|
|
libpam0g-dev,
|
|
libgtk-4-dev,
|
|
libadwaita-1-dev,
|
|
libfido2-dev,
|
|
pkg-config
|
|
Standards-Version: 4.6.2
|
|
Homepage: https://github.com/dangerousthings/authforge
|
|
Vcs-Browser: https://github.com/dangerousthings/authforge
|
|
Vcs-Git: https://github.com/dangerousthings/authforge.git
|
|
|
|
Package: authforge
|
|
Architecture: any
|
|
Depends: authforge-daemon (= ${binary:Version}),
|
|
authforge-pam (= ${binary:Version}),
|
|
authforge-cli (= ${binary:Version}),
|
|
${misc:Depends}
|
|
Recommends: authforge-gui (= ${binary:Version})
|
|
Suggests: authforge-gnome-integration
|
|
Description: Turnkey FIDO2/U2F/TOTP MFA for Linux desktops (metapackage)
|
|
Installs the full authforge stack: daemon, PAM module, CLI, and
|
|
(if recommended) GUI.
|
|
|
|
Package: authforge-daemon
|
|
Architecture: any
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}, libpam-u2f, libfido2-1
|
|
Description: System daemon for authforge MFA management
|
|
Provides the privileged D-Bus service that orchestrates enrollment,
|
|
policy edits, and lockout-prevention checks.
|
|
|
|
Package: authforge-pam
|
|
Architecture: any
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}, libpam-runtime
|
|
Description: PAM module backstopping authforge first-login enrollment
|
|
Refuses authentication when /var/lib/authforge/pending/<user> exists
|
|
and the user has not completed first-login MFA setup.
|
|
|
|
Package: authforge-cli
|
|
Architecture: any
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}, authforge-daemon
|
|
Description: CLI for authforge (admin and fleet)
|
|
Configure policy, enroll on behalf of users, generate recovery codes.
|
|
|
|
Package: authforge-gui
|
|
Architecture: any
|
|
Depends: ${shlibs:Depends}, ${misc:Depends}, authforge-daemon
|
|
Description: GTK4/libadwaita UI for authforge
|
|
End-user-facing settings panel for enrollment and policy.
|