Closed DailyDreaming closed 1 year ago
Permissions are modified on line 1739 with chown -R $MYSQLUSER:$MYSQLUSER $MYSQLDIR/$db , but not later for $MYSQLDIR/hgFixed. This can cause permissions issues (especially if running as root), and this PR fixes that.
chown -R $MYSQLUSER:$MYSQLUSER $MYSQLDIR/$db
$MYSQLDIR/hgFixed
root
OK, I have incorporated this in our up-stream repository. Thanks for the contribution.
Permissions are modified on line 1739 with
chown -R $MYSQLUSER:$MYSQLUSER $MYSQLDIR/$db
, but not later for$MYSQLDIR/hgFixed
. This can cause permissions issues (especially if running asroot
), and this PR fixes that.