view pam-sober/Justfile @ 34:ec70822cbdef

Overhaul
author Andy Caldwell <andrew.caldwell@metaswitch.com>
date Sun, 24 Apr 2022 03:42:11 +0100
parents 53efbcff805d
children
line wrap: on
line source


all:
    cargo build

install:
    @cargo build --release
    sudo cp conf/sober-auth /etc/pam.d/
    sudo cp ../target/release/libpam_sober.so /lib/security/pam_sober.so

test:
    @just install
    gcc -o ../target/pam_test test.c -lpam -lpam_misc