Moin, On Fri, July 20, 2018 10:55 am, Victor Wagner wrote: > On Fri, 20 Jul 2018 10:25:47 -0400 > Tom Lane <t...@sss.pgh.pa.us> wrote: > >> Victor Wagner <vi...@wagner.pp.ru> writes: >> > I've discovered that in the branch REL_11_STABLE there is shell >> > script src/bin/pg_upgrade/test.sh which doesn't work under Solaris >> > 10. (it uses $(command) syntax with is not compatible with original >> > Solaris /bin/sh) > >> >> Please send a patch. Most of us do not have access to old shells > > Here it goes. Previous letter was written before fixed tests were > completed, because this old machine is slow.
+ *) if [ `find ${PGDATA} -type f ! -perm 640 | wc -l` -ne 0 ]; then Shouldn't ${PGDATA} in the above as argument to find be quoted, otherwise the shell would get confused if it contains spaces or other special characters? Regards, Tels