summaryrefslogtreecommitdiff
path: root/beagle/debian-rfs/usr/share/pam
diff options
context:
space:
mode:
Diffstat (limited to 'beagle/debian-rfs/usr/share/pam')
-rw-r--r--beagle/debian-rfs/usr/share/pam/common-account26
-rw-r--r--beagle/debian-rfs/usr/share/pam/common-account.md5sums2
-rw-r--r--beagle/debian-rfs/usr/share/pam/common-auth26
-rw-r--r--beagle/debian-rfs/usr/share/pam/common-auth.md5sums3
-rw-r--r--beagle/debian-rfs/usr/share/pam/common-password34
-rw-r--r--beagle/debian-rfs/usr/share/pam/common-password.md5sums6
-rw-r--r--beagle/debian-rfs/usr/share/pam/common-session25
-rw-r--r--beagle/debian-rfs/usr/share/pam/common-session-noninteractive25
-rw-r--r--beagle/debian-rfs/usr/share/pam/common-session-noninteractive.md5sums1
-rw-r--r--beagle/debian-rfs/usr/share/pam/common-session.md5sums3
10 files changed, 151 insertions, 0 deletions
diff --git a/beagle/debian-rfs/usr/share/pam/common-account b/beagle/debian-rfs/usr/share/pam/common-account
new file mode 100644
index 0000000..84aa98d
--- /dev/null
+++ b/beagle/debian-rfs/usr/share/pam/common-account
@@ -0,0 +1,26 @@
+#
+# /etc/pam.d/common-account - authorization settings common to all services
+#
+# This file is included from other service-specific PAM config files,
+# and should contain a list of the authorization modules that define
+# the central access policy for use on the system. The default is to
+# only deny service to users whose accounts are expired in /etc/shadow.
+#
+# As of pam 1.0.1-6, this file is managed by pam-auth-update by default.
+# To take advantage of this, it is recommended that you configure any
+# local modules either before or after the default block, and use
+# pam-auth-update to manage selection of other modules. See
+# pam-auth-update(8) for details.
+#
+
+# here are the per-package modules (the "Primary" block)
+$account_primary
+# here's the fallback if no module succeeds
+account requisite pam_deny.so
+# prime the stack with a positive return value if there isn't one already;
+# this avoids us returning an error just because nothing sets a success code
+# since the modules above will each just jump around
+account required pam_permit.so
+# and here are more per-package modules (the "Additional" block)
+$account_additional
+# end of pam-auth-update config
diff --git a/beagle/debian-rfs/usr/share/pam/common-account.md5sums b/beagle/debian-rfs/usr/share/pam/common-account.md5sums
new file mode 100644
index 0000000..047c30e
--- /dev/null
+++ b/beagle/debian-rfs/usr/share/pam/common-account.md5sums
@@ -0,0 +1,2 @@
+9f04221fe44762047894adeb96ffd069 debian/local/common-account
+3c0c362eaf3421848b679d63fd48c3fa # 1.0.1-6 -
diff --git a/beagle/debian-rfs/usr/share/pam/common-auth b/beagle/debian-rfs/usr/share/pam/common-auth
new file mode 100644
index 0000000..ac9d2dd
--- /dev/null
+++ b/beagle/debian-rfs/usr/share/pam/common-auth
@@ -0,0 +1,26 @@
+#
+# /etc/pam.d/common-auth - authentication settings common to all services
+#
+# This file is included from other service-specific PAM config files,
+# and should contain a list of the authentication modules that define
+# the central authentication scheme for use on the system
+# (e.g., /etc/shadow, LDAP, Kerberos, etc.). The default is to use the
+# traditional Unix authentication mechanisms.
+#
+# As of pam 1.0.1-6, this file is managed by pam-auth-update by default.
+# To take advantage of this, it is recommended that you configure any
+# local modules either before or after the default block, and use
+# pam-auth-update to manage selection of other modules. See
+# pam-auth-update(8) for details.
+
+# here are the per-package modules (the "Primary" block)
+$auth_primary
+# here's the fallback if no module succeeds
+auth requisite pam_deny.so
+# prime the stack with a positive return value if there isn't one already;
+# this avoids us returning an error just because nothing sets a success code
+# since the modules above will each just jump around
+auth required pam_permit.so
+# and here are more per-package modules (the "Additional" block)
+$auth_additional
+# end of pam-auth-update config
diff --git a/beagle/debian-rfs/usr/share/pam/common-auth.md5sums b/beagle/debian-rfs/usr/share/pam/common-auth.md5sums
new file mode 100644
index 0000000..48bd359
--- /dev/null
+++ b/beagle/debian-rfs/usr/share/pam/common-auth.md5sums
@@ -0,0 +1,3 @@
+933d757dcd5974b00619f68955743be7 /etc/pam.d/common-auth
+b58d8e0a6cadbf879df94869cca6be98 /etc/pam.d/common-auth
+8d4fe17e66ba25de16a117035d1396aa # 1.0.1-6 -
diff --git a/beagle/debian-rfs/usr/share/pam/common-password b/beagle/debian-rfs/usr/share/pam/common-password
new file mode 100644
index 0000000..963f1eb
--- /dev/null
+++ b/beagle/debian-rfs/usr/share/pam/common-password
@@ -0,0 +1,34 @@
+#
+# /etc/pam.d/common-password - password-related modules common to all services
+#
+# This file is included from other service-specific PAM config files,
+# and should contain a list of modules that define the services to be
+# used to change user passwords. The default is pam_unix.
+
+# Explanation of pam_unix options:
+#
+# The "sha512" option enables salted SHA512 passwords. Without this option,
+# the default is Unix crypt. Prior releases used the option "md5".
+#
+# The "obscure" option replaces the old `OBSCURE_CHECKS_ENAB' option in
+# login.defs.
+#
+# See the pam_unix manpage for other options.
+
+# As of pam 1.0.1-6, this file is managed by pam-auth-update by default.
+# To take advantage of this, it is recommended that you configure any
+# local modules either before or after the default block, and use
+# pam-auth-update to manage selection of other modules. See
+# pam-auth-update(8) for details.
+
+# here are the per-package modules (the "Primary" block)
+$password_primary
+# here's the fallback if no module succeeds
+password requisite pam_deny.so
+# prime the stack with a positive return value if there isn't one already;
+# this avoids us returning an error just because nothing sets a success code
+# since the modules above will each just jump around
+password required pam_permit.so
+# and here are more per-package modules (the "Additional" block)
+$password_additional
+# end of pam-auth-update config
diff --git a/beagle/debian-rfs/usr/share/pam/common-password.md5sums b/beagle/debian-rfs/usr/share/pam/common-password.md5sums
new file mode 100644
index 0000000..3c33255
--- /dev/null
+++ b/beagle/debian-rfs/usr/share/pam/common-password.md5sums
@@ -0,0 +1,6 @@
+601ecfbc99fd359877552cb5298087ad /etc/pam.d/common-password
+e5ae8ba8d00083c922d9d82a0432ef78 /etc/pam.d/common-password
+5d518818f1c6c369040b782f7852f53e /etc/pam.d/common-password
+9ba753d0824276b44bcadfee1f87b6bc # 1.0.1-4ubuntu5 - 1.0.1-4ubuntu5.5
+4bd7610f2e85f8ddaef79c7db7cb49eb # 1.0.1-6 - 1.1.0-1
+50fce2113dfda83ac8bdd5a6e706caec # 1.0.1-6ubuntu1 -
diff --git a/beagle/debian-rfs/usr/share/pam/common-session b/beagle/debian-rfs/usr/share/pam/common-session
new file mode 100644
index 0000000..2e94d6c
--- /dev/null
+++ b/beagle/debian-rfs/usr/share/pam/common-session
@@ -0,0 +1,25 @@
+#
+# /etc/pam.d/common-session - session-related modules common to all services
+#
+# This file is included from other service-specific PAM config files,
+# and should contain a list of modules that define tasks to be performed
+# at the start and end of sessions of *any* kind (both interactive and
+# non-interactive).
+#
+# As of pam 1.0.1-6, this file is managed by pam-auth-update by default.
+# To take advantage of this, it is recommended that you configure any
+# local modules either before or after the default block, and use
+# pam-auth-update to manage selection of other modules. See
+# pam-auth-update(8) for details.
+
+# here are the per-package modules (the "Primary" block)
+$session_primary
+# here's the fallback if no module succeeds
+session requisite pam_deny.so
+# prime the stack with a positive return value if there isn't one already;
+# this avoids us returning an error just because nothing sets a success code
+# since the modules above will each just jump around
+session required pam_permit.so
+# and here are more per-package modules (the "Additional" block)
+$session_additional
+# end of pam-auth-update config
diff --git a/beagle/debian-rfs/usr/share/pam/common-session-noninteractive b/beagle/debian-rfs/usr/share/pam/common-session-noninteractive
new file mode 100644
index 0000000..1dd1a17
--- /dev/null
+++ b/beagle/debian-rfs/usr/share/pam/common-session-noninteractive
@@ -0,0 +1,25 @@
+#
+# /etc/pam.d/common-session-noninteractive - session-related modules
+# common to all non-interactive services
+#
+# This file is included from other service-specific PAM config files,
+# and should contain a list of modules that define tasks to be performed
+# at the start and end of all non-interactive sessions.
+#
+# As of pam 1.0.1-6, this file is managed by pam-auth-update by default.
+# To take advantage of this, it is recommended that you configure any
+# local modules either before or after the default block, and use
+# pam-auth-update to manage selection of other modules. See
+# pam-auth-update(8) for details.
+
+# here are the per-package modules (the "Primary" block)
+$session_nonint_primary
+# here's the fallback if no module succeeds
+session requisite pam_deny.so
+# prime the stack with a positive return value if there isn't one already;
+# this avoids us returning an error just because nothing sets a success code
+# since the modules above will each just jump around
+session required pam_permit.so
+# and here are more per-package modules (the "Additional" block)
+$session_nonint_additional
+# end of pam-auth-update config
diff --git a/beagle/debian-rfs/usr/share/pam/common-session-noninteractive.md5sums b/beagle/debian-rfs/usr/share/pam/common-session-noninteractive.md5sums
new file mode 100644
index 0000000..020c2e4
--- /dev/null
+++ b/beagle/debian-rfs/usr/share/pam/common-session-noninteractive.md5sums
@@ -0,0 +1 @@
+ad2b78ce1498dd637ef36469430b6ac6 # 1.0.1-11 -
diff --git a/beagle/debian-rfs/usr/share/pam/common-session.md5sums b/beagle/debian-rfs/usr/share/pam/common-session.md5sums
new file mode 100644
index 0000000..9f06fa1
--- /dev/null
+++ b/beagle/debian-rfs/usr/share/pam/common-session.md5sums
@@ -0,0 +1,3 @@
+4845c1632b3561a9debe8d59be1b238e /etc/pam.d/common-session
+4a25673e8b36f1805219027d3be02cd2 # 1.0.1-4ubuntu5 - 1.0.1-4ubuntu5.5
+240fb92986c885b327cdb21dd641da8c # 1.0.1-6 -