-
Notifications
You must be signed in to change notification settings - Fork 8
High Sierra Testing #26
Comments
That's good to know. Did you allow pinpoint to enable location services and add python to the allow list? or was this a machine that was upgraded from 10.12? |
Just to add, although you're probably aware. Working with Beta 9, same two lines changed as above. Location Services were already enabled, Python had to be allowed access. Can't get Google lookup to work but Apple lookup is working fine. High Sierra was an upgrade from a clean install of Sierra. |
Does anyone have a way of enabling Pinpoint in location services via a script? My googling's only got me as far as enabling location services but not any Apps. |
#!/bin/bash
## Unload locationd
launchctl unload /System/Library/LaunchDaemons/com.apple.locationd.plist
## Write enabled value to locationd plist
defaults write /var/db/locationd/Library/Preferences/ByHost/com.apple.locationd LocationServicesEnabled -int 1
## Fix Permissions for the locationd folder
chown -R _locationd:_locationd /var/db/locationd
## Reload locationd
launchctl load /System/Library/LaunchDaemons/com.apple.locationd.plist
exit 0
I use this to enable Sierra machines after imaging, I haven’t tested on High Sierra but IIRC they’ve put it under System Integrity Protection and it may not work.
Regards,
Roger
… On Nov 21, 2017, at 8:08 AM, Paul Cossey ***@***.***> wrote:
Does anyone have a way of enabling Pinpoint in location services via a script? My googling's only got me as far as enabling location services but not any Apps.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub <#26 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AealwEPbjCB_k6iD_K2V03HswB2OltRmks5s4strgaJpZM4ObmBY>.
|
@paul-cossey Pinpoint should enable python but currently doesn't due to a bug #24 @rogercrawford the Pinpoint code will do and enable Location Services so the above bash script shouldn't be required. As for this current issue of High Sierra not working I should have an updated preview build uploaded in a few hours. I might need help testing the preview on 10.12 and earlier. |
Please test the latest pre-release and provide feedback https://github.com/clburlison/pinpoint/releases/tag/v2.0.0beta1 |
Thanks Clayton. I’ll give this a shot on a group of test users here.
Regards,
Roger
… On Nov 21, 2017, at 3:58 PM, Clayton Burlison ***@***.***> wrote:
Please test the latest pre-release and provide feedback https://github.com/clburlison/pinpoint/releases/tag/v2.0.0beta1 <https://github.com/clburlison/pinpoint/releases/tag/v2.0.0beta1>
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub <#26 (comment)>, or mute the thread <https://github.com/notifications/unsubscribe-auth/AealwBWqLpH9TpTU9iRiPZ_gmPAeNp7Fks5s4zmLgaJpZM4ObmBY>.
|
Thanks, guys. I'll give the pre-release a test today ands report back. :-) |
Started testing with High Sierra. Changed Line 134
if not 8 <= int(os_vers()) <= 13:
Changed Line 299
if int(os_vers()) >= 13:
Everything is working as intended. Currently testing on a mac mini with High Sierra Beta 3.
The text was updated successfully, but these errors were encountered: