[Pkg-shadow-commits] r480 - in branches/experimental/debian: . pam.d

Christian Perrier bubulle at costa.debian.org
Sat Aug 27 18:30:04 UTC 2005


Author: bubulle
Date: 2005-08-27 18:30:03 +0000 (Sat, 27 Aug 2005)
New Revision: 480

Added:
   branches/experimental/debian/pam.d/groupadd
   branches/experimental/debian/pam.d/groupdel
   branches/experimental/debian/pam.d/groupmod
   branches/experimental/debian/pam.d/newusers
   branches/experimental/debian/pam.d/useradd
   branches/experimental/debian/pam.d/userdel
   branches/experimental/debian/pam.d/usermod
Modified:
   branches/experimental/debian/changelog
   branches/experimental/debian/pam.d/chage
   branches/experimental/debian/pam.d/chpasswd
   branches/experimental/debian/rules
Log:
Add basic PAM configuration files for utilities now needing them


Modified: branches/experimental/debian/changelog
===================================================================
--- branches/experimental/debian/changelog	2005-08-27 18:07:08 UTC (rev 479)
+++ branches/experimental/debian/changelog	2005-08-27 18:30:03 UTC (rev 480)
@@ -20,8 +20,8 @@
     - 404_undef_USE_PAM.dpatch: disabled on upstream author's advice
       we do not enforce not using PAM in chage, chpasswd, groupadd
       groupdel, groupmod, newusers, useradd, userdel, usermod
-    - as a consequence, ship a PAMconfiguration file for:
-      chage, chpasswd
+    - as a consequence, ship a PAMc onfiguration file for these utilities
+      with pam_rootok.so
   * Upstream bugs not already fixed in upstream releases or CVS:
     - 443_chage_exit_values: now exit with errorlevel=4 when no
       shadow password exists (was previously 3 but upstream now uses it)

Modified: branches/experimental/debian/pam.d/chage
===================================================================
--- branches/experimental/debian/pam.d/chage	2005-08-27 18:07:08 UTC (rev 479)
+++ branches/experimental/debian/pam.d/chage	2005-08-27 18:30:03 UTC (rev 480)
@@ -1,5 +1,5 @@
 # The PAM configuration file for the Shadow 'chage' service
 #
 
-# This allows root to chage without password (normal operation)
+# This allows root to change password aging being prompted for a password
 auth		sufficient	pam_rootok.so

Modified: branches/experimental/debian/pam.d/chpasswd
===================================================================
--- branches/experimental/debian/pam.d/chpasswd	2005-08-27 18:07:08 UTC (rev 479)
+++ branches/experimental/debian/pam.d/chpasswd	2005-08-27 18:30:03 UTC (rev 480)
@@ -1,5 +1,5 @@
 # The PAM configuration file for the Shadow 'chpasswd' service
 #
 
-# This allows root to chpasswd without passwords (normal operation)
+# This allows root to use chpasswd without being prompted for a password
 auth		sufficient	pam_rootok.so

Added: branches/experimental/debian/pam.d/groupadd
===================================================================
--- branches/experimental/debian/pam.d/groupadd	2005-08-27 18:07:08 UTC (rev 479)
+++ branches/experimental/debian/pam.d/groupadd	2005-08-27 18:30:03 UTC (rev 480)
@@ -0,0 +1,5 @@
+# The PAM configuration file for the Shadow 'groupadd' service
+#
+
+# This allows root to add groups without being prompted for a password
+auth		sufficient	pam_rootok.so

Added: branches/experimental/debian/pam.d/groupdel
===================================================================
--- branches/experimental/debian/pam.d/groupdel	2005-08-27 18:07:08 UTC (rev 479)
+++ branches/experimental/debian/pam.d/groupdel	2005-08-27 18:30:03 UTC (rev 480)
@@ -0,0 +1,5 @@
+# The PAM configuration file for the Shadow 'groupdel' service
+#
+
+# This allows root to remove groups without being prompted for a password
+auth		sufficient	pam_rootok.so

Added: branches/experimental/debian/pam.d/groupmod
===================================================================
--- branches/experimental/debian/pam.d/groupmod	2005-08-27 18:07:08 UTC (rev 479)
+++ branches/experimental/debian/pam.d/groupmod	2005-08-27 18:30:03 UTC (rev 480)
@@ -0,0 +1,5 @@
+# The PAM configuration file for the Shadow 'groupmod' service
+#
+
+# This allows root to modify groups without being prompted for a password
+auth		sufficient	pam_rootok.so

Added: branches/experimental/debian/pam.d/newusers
===================================================================
--- branches/experimental/debian/pam.d/newusers	2005-08-27 18:07:08 UTC (rev 479)
+++ branches/experimental/debian/pam.d/newusers	2005-08-27 18:30:03 UTC (rev 480)
@@ -0,0 +1,6 @@
+# The PAM configuration file for the Shadow 'newusers' service
+#
+
+# This allows root to add users with a batch file without being 
+# prompted for a password
+auth		sufficient	pam_rootok.so

Added: branches/experimental/debian/pam.d/useradd
===================================================================
--- branches/experimental/debian/pam.d/useradd	2005-08-27 18:07:08 UTC (rev 479)
+++ branches/experimental/debian/pam.d/useradd	2005-08-27 18:30:03 UTC (rev 480)
@@ -0,0 +1,5 @@
+# The PAM configuration file for the Shadow 'useradd' service
+#
+
+# This allows root to add users without being prompted for a password
+auth		sufficient	pam_rootok.so

Added: branches/experimental/debian/pam.d/userdel
===================================================================
--- branches/experimental/debian/pam.d/userdel	2005-08-27 18:07:08 UTC (rev 479)
+++ branches/experimental/debian/pam.d/userdel	2005-08-27 18:30:03 UTC (rev 480)
@@ -0,0 +1,5 @@
+# The PAM configuration file for the Shadow 'userdel' service
+#
+
+# This allows root to remove users without being prompted for a password
+auth		sufficient	pam_rootok.so

Added: branches/experimental/debian/pam.d/usermod
===================================================================
--- branches/experimental/debian/pam.d/usermod	2005-08-27 18:07:08 UTC (rev 479)
+++ branches/experimental/debian/pam.d/usermod	2005-08-27 18:30:03 UTC (rev 480)
@@ -0,0 +1,5 @@
+# The PAM configuration file for the Shadow 'groupdel' service
+#
+
+# This allows root to remove groups without being prompted for a password
+auth		sufficient	pam_rootok.so

Modified: branches/experimental/debian/rules
===================================================================
--- branches/experimental/debian/rules	2005-08-27 18:07:08 UTC (rev 479)
+++ branches/experimental/debian/rules	2005-08-27 18:30:03 UTC (rev 480)
@@ -113,6 +113,13 @@
 	install -c -m 444 debian/pam.d/passwd debian/passwd/etc/pam.d/passwd
 	install -c -m 444 debian/pam.d/chpasswd debian/passwd/etc/pam.d/chpasswd
 	install -c -m 444 debian/pam.d/chage debian/passwd/etc/pam.d/chage
+	install -c -m 444 debian/pam.d/groupadd debian/passwd/etc/pam.d/groupadd
+	install -c -m 444 debian/pam.d/groupdel debian/passwd/etc/pam.d/groupdel
+	install -c -m 444 debian/pam.d/groupmod debian/passwd/etc/pam.d/groupmod
+	install -c -m 444 debian/pam.d/useradd debian/passwd/etc/pam.d/useradd
+	install -c -m 444 debian/pam.d/userdel debian/passwd/etc/pam.d/userdel
+	install -c -m 444 debian/pam.d/usermod debian/passwd/etc/pam.d/usermod
+	install -c -m 444 debian/pam.d/newusers debian/passwd/etc/pam.d/newusers
 	install -c -m 444 debian/login.defs debian/login/etc/login.defs
 	install -c -m 444 debian/securetty.$(DEB_HOST_ARCH_OS) debian/login/etc/securetty
 	install -d debian/passwd/usr/share/passwd




More information about the Pkg-shadow-commits mailing list