Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Aug 2020 21:11:33 +0000
From:      bugzilla-noreply@freebsd.org
To:        ports-bugs@FreeBSD.org
Subject:   [Bug 248916] perl5 www / p5-Starman -- provided init script has coding errors
Message-ID:  <bug-248916-7788@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D248916

            Bug ID: 248916
           Summary: perl5 www / p5-Starman -- provided init script has
                    coding errors
           Product: Ports & Packages
           Version: Latest
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Only Me
          Priority: ---
         Component: Individual Port(s)
          Assignee: ports-bugs@FreeBSD.org
          Reporter: byrnejb@harte-lyne.ca

The provided init script contains these lines:

starman_enable=3D${starman_enable-"NO"}
starman_config=3D${starman_config-"/usr/local/etc/starman.psgi"}
starman_user=3D${starman_user-"www"}
starman_group=3D${starman_group-"www"}

The comparison operator is missing the colon :=20

These should be=20

starman_enable=3D${starman_enable:-"NO"}
starman_config=3D${starman_config:-"/usr/local/etc/starman.psgi"}
starman_user=3D${starman_user:-"www"}
starman_group=3D${starman_group:-"www"}

I have already corrected this on my suystem so one or more of these may be
correct as distributed but the first two are certainly wrong as shipped.

--=20
You are receiving this mail because:
You are the assignee for the bug.=



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-248916-7788>