Rename project: ubuntu-fido -> authforge
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.
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
[package]
|
||||
name = "ubuntu-fidoctl"
|
||||
name = "authforge-cli"
|
||||
version.workspace = true
|
||||
edition.workspace = true
|
||||
license.workspace = true
|
||||
|
||||
[[bin]]
|
||||
name = "ubuntu-fidoctl"
|
||||
name = "authforgectl"
|
||||
path = "src/main.rs"
|
||||
|
||||
[dependencies]
|
||||
ubuntu-fido-common = { path = "../common" }
|
||||
authforge-common = { path = "../common" }
|
||||
clap = { workspace = true }
|
||||
anyhow = { workspace = true }
|
||||
zbus = { workspace = true }
|
||||
|
||||
@@ -3,9 +3,9 @@ use clap::Parser;
|
||||
|
||||
#[derive(Parser)]
|
||||
#[command(
|
||||
name = "ubuntu-fidoctl",
|
||||
name = "authforgectl",
|
||||
version,
|
||||
about = "Manage ubuntu-fido configuration"
|
||||
about = "Manage authforge configuration"
|
||||
)]
|
||||
struct Cli {
|
||||
#[command(subcommand)]
|
||||
@@ -21,7 +21,7 @@ enum Cmd {
|
||||
async fn main() -> Result<()> {
|
||||
let args = Cli::parse();
|
||||
match args.cmd {
|
||||
Cmd::Status => println!("ubuntu-fidoctl: not yet implemented"),
|
||||
Cmd::Status => println!("authforgectl: not yet implemented"),
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user