Parent Directory
|
Revision Log
|
Revision Graph
Initial commit of PAM Authentication module, which allows Drupal logins to authenticate against PAM.
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * Implementation of hook_install(). |
| 5 | */ |
| 6 | function pam_auth_install() { |
| 7 | require_once(dirname(__FILE__) .'/pam_auth.module'); |
| 8 | _pam_auth_install_check(); |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * Implementation of hook_uninstall(). |
| 13 | */ |
| 14 | function pam_auth_uninstall() { |
| 15 | variable_del('pam_auth_enabled'); |
| 16 | variable_del('pam_auth_disable_password_changes'); |
| 17 | } |
| ViewVC Help | |
| Powered by ViewVC 1.1.2 |