[Bug 158] New: FreeBSD 5.0 depricates chown [user].[group] breaking installer.pm
http://bugs.koha.org/cgi-bin/bugzilla/show_bug.cgi?id=158 Summary: FreeBSD 5.0 depricates chown [user].[group] breaking installer.pm Product: Koha Version: CVS Platform: All OS/Version: FreeBSD Status: NEW Severity: normal Priority: P2 Component: Installation AssignedTo: tonnesen@cmsd.bc.ca ReportedBy: micheas@micheas.dyns.net QAContact: koha-devel@lists.sourceforge.net In order to support '.' in user names FreeBSD has dropped Support for '.' as a seperator in chown. Only the ':' colon must be used. (chown [user]:[group] [file]) This may effect Mac os/X as well. (It almost certainly will in the futur.) This affects the folloeing files an lines Install.pm: system("chown -R root.$::httpduser $::opacdir"); Install.pm: system("chown -R root.$::httpduser $::intranetdir"); koha.upgrade:system("chown -R root.$httpduser $::opacdir"); koha.upgrade:system("chown -R root.$httpduser $::intranetdir"); which I belive need changed to: Install.pm: system("chown -R root:$::httpduser $::opacdir"); Install.pm: system("chown -R root:$::httpduser $::intranetdir"); koha.upgrade:system("chown -R root:$httpduser $::opacdir"); koha.upgrade:system("chown -R root:$httpduser $::intranetdir"); Thamks, Micheas ------- You are receiving this mail because: ------- You are the QA contact for the bug, or are watching the QA contact.
participants (1)
-
bugzilla-daemon@wilbur.katipo.co.nz