This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author mattbillenstein
Recipients asvetlov, mattbillenstein, ned.deily, ronaldoussoren, vstinner, yselivanov
Date 2018-01-09.08:45:58
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1515487558.96.0.467229070634.issue32517@psf.upfronthosting.co.za>
In-reply-to
Content
I don't see a conflict in the uids:

mattb@mattb-mbp2:~ $ id -u buildbot
506
mattb@mattb-mbp2:~ $ id -u _timed
266
mattb@mattb-mbp2:~ $ grep _timed /etc/passwd
_timed:*:266:266:Time Sync Daemon:/var/db/timed:/usr/bin/false
mattb@mattb-mbp2:~ $ grep 506 /etc/passwd
mattb@mattb-mbp2:~ $

Buildbot is started via launchd:

mattb@mattb-mbp2:~ $ sudo cat /Library/LaunchDaemons/net.buildbot.slave.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
    <key>Label</key>
    <string>net.buildbot.slave</string>
    <key>UserName</key>
    <string>buildbot</string>
    <key>WorkingDirectory</key>
    <string>/Users/buildbot/buildarea</string>
    <key>ProgramArguments</key>
    <array>
        <string>/Users/buildbot/bin/run_slave.sh</string>
    </array>
    <key>StandardOutPath</key>
    <string>twistd.log</string>
    <key>StandardErrorPath</key>
    <string>twistd.log</string>
    <key>KeepAlive</key>
    <true/>
    <key>SessionCreate</key>
    <true/>
</dict>
</plist>
History
Date User Action Args
2018-01-09 08:45:59mattbillensteinsetrecipients: + mattbillenstein, ronaldoussoren, vstinner, ned.deily, asvetlov, yselivanov
2018-01-09 08:45:58mattbillensteinsetmessageid: <1515487558.96.0.467229070634.issue32517@psf.upfronthosting.co.za>
2018-01-09 08:45:58mattbillensteinlinkissue32517 messages
2018-01-09 08:45:58mattbillensteincreate