diff -Nur -x '*.orig' -x '*.rej' smeserver-postgresql-0.0.1/root/etc/e-smith/templates/var/lib/pgsql/data/postgresql.conf/tcpip_socket mezzanine_patched_smeserver-postgresql-0.0.1/root/etc/e-smith/templates/var/lib/pgsql/data/postgresql.conf/tcpip_socket --- smeserver-postgresql-0.0.1/root/etc/e-smith/templates/var/lib/pgsql/data/postgresql.conf/tcpip_socket 2006-08-29 23:02:49.000000000 -0400 +++ mezzanine_patched_smeserver-postgresql-0.0.1/root/etc/e-smith/templates/var/lib/pgsql/data/postgresql.conf/tcpip_socket 2006-08-29 23:02:27.000000000 -0400 @@ -1,5 +1,5 @@ { my $local = $postgresql{LocalNetworkingOnly} || 'yes'; $OUT = "tcpip_socket = "; - $OUT .= ($local = 'yes') ? 'false' : 'true'; + $OUT .= ($local eq 'yes') ? 'false' : 'true'; }