view pam-http/Justfile @ 34:ec70822cbdef

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


all:
    cargo build

install:
    @cargo build --release
    sudo cp conf/http-auth /etc/pam.d/
    sudo cp ../target/release/libpam_http.so /lib/security/pam_http.so

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