hnakamur commented on PR #12036: URL: https://github.com/apache/trafficserver/pull/12036#issuecomment-2681165741
Here is a step to reproduce the issue. ``` cmake -B build cmake --build build -j -v sudo cmake --install build ``` Without this fix, I got the following error: ``` -- Installing: /usr/local/trafficserver/var/trafficserver -- Changing /usr/local/var/log/trafficserver ownership to nobody:nogroup chown: cannot access '/usr/local/var/log/trafficserver': No such file or directory ``` This error is the same as reported at https://github.com/apache/trafficserver/issues/10954 ``` -- Changing /usr/local/var/trafficserver ownership to nobody:nogroup chown: cannot access '/usr/local/var/trafficserver': No such file or directory ``` With this fix, the above error does not happen. ``` -- Changing /usr/local/var/log/trafficserver ownership to nobody:nogroup -- Changing /usr/local/var/trafficserver ownership to nobody:nogroup -- Changing /usr/local/var/trafficserver ownership to nobody:nogroup ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
