Tim Waugh 12b1ae
diff -up /dev/null cups-1.4.2/conf/cups.password-auth
Tim Waugh 12b1ae
--- /dev/null	2009-11-10 09:17:06.284031490 +0000
Tim Waugh 12b1ae
+++ cups-1.4.2/conf/cups.password-auth	2009-11-10 11:15:42.750666738 +0000
Tim Waugh 12b1ae
@@ -0,0 +1,4 @@
Tim Waugh 12b1ae
+#%PAM-1.0
Tim Waugh 12b1ae
+# Use password-auth common PAM configuration for the daemon
Tim Waugh 12b1ae
+auth        include     password-auth
Tim Waugh 12b1ae
+account     include     password-auth
Tim Waugh 12b1ae
diff -up cups-1.4.2/conf/cups.system-auth cups-1.4.2/conf/cups
Tim Waugh 12b1ae
diff -up /dev/null cups-1.4.2/conf/cups.system-auth
Tim Waugh 12b1ae
--- /dev/null	2009-11-10 09:17:06.284031490 +0000
Tim Waugh 12b1ae
+++ cups-1.4.2/conf/cups.system-auth	2009-11-10 11:15:42.750666738 +0000
Tim Waugh 12b1ae
@@ -0,0 +1,3 @@
Tim Waugh 12b1ae
+#%PAM-1.0
Tim Waugh 12b1ae
+auth	include		system-auth
Tim Waugh 12b1ae
+account	include		system-auth
Tim Waugh 12b1ae
diff -up cups-1.4.2/conf/Makefile.system-auth cups-1.4.2/conf/Makefile
Tim Waugh 12b1ae
--- cups-1.4.2/conf/Makefile.system-auth	2009-09-22 22:53:31.000000000 +0100
Tim Waugh 12b1ae
+++ cups-1.4.2/conf/Makefile	2009-11-10 11:18:44.188791989 +0000
Tim Waugh 12b1ae
@@ -90,10 +90,16 @@ install-data:
cvsdist 051973
 	done
Tim Waugh 0edf4c
 	-if test x$(PAMDIR) != x; then \
Tim Waugh 0edf4c
 		$(INSTALL_DIR) -m 755 $(BUILDROOT)$(PAMDIR); \
Tim Waugh 12b1ae
-		if test -r $(BUILDROOT)$(PAMDIR)/cups ; then \
Tim Waugh 0edf4c
-			$(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups.N ; \
Tomáš Mráz 7aabe5
+		if test -f /etc/pam.d/password-auth; then \
Tim Waugh 12b1ae
+			$(INSTALL_DATA) cups.password-auth $(BUILDROOT)$(PAMDIR)/cups; \
Tomáš Mráz 7aabe5
+		elif test -f /etc/pam.d/system-auth; then \
Tim Waugh 12b1ae
+			$(INSTALL_DATA) cups.system-auth $(BUILDROOT)$(PAMDIR)/cups; \
Tim Waugh 0edf4c
 		else \
Tim Waugh 0edf4c
-			$(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups ; \
Tim Waugh 12b1ae
+			if test -r $(BUILDROOT)$(PAMDIR)/cups ; then \
Tim Waugh 0edf4c
+				$(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups.N ; \
Tim Waugh 0edf4c
+			else \
Tim Waugh 0edf4c
+				$(INSTALL_DATA) $(PAMFILE) $(BUILDROOT)$(PAMDIR)/cups ; \
Tim Waugh 0edf4c
+			fi ; \
Tim Waugh 0edf4c
 		fi ; \
cvsdist 051973
 	fi
cvsdist 051973