You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

install 319B

123456789101112
  1. #! /usr/bin/env bash
  2. dir="$(dirname $(readlink -f "${0}"))"
  3. cp "${dir}/notify-pam.sh" /usr/local/bin/notify-pam &&
  4. if [ ! -f /etc/pam.d/notify-pam ]
  5. then
  6. cp "${dir}/notify-pam" /etc/pam.d/notify-pam &&
  7. echo "@include notify-pam" >> /etc/pam.d/sudo &&
  8. echo "@include notify-pam" >> /etc/pam.d/common-session
  9. fi