fix macos bootstrap.signed path

This commit is contained in:
Jeff Becker 2020-11-27 07:07:33 -05:00
parent 1f8ec6f133
commit 3fc81c8633
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
2 changed files with 7 additions and 0 deletions

View File

@ -100,4 +100,10 @@ bool MacOSLokinetProcessManager::doGetProcessPid(int& pid)
return true;
}
QString MacOSLokinetProcessManager::getDefaultBootstrapFileLocation()
{
return "/var/lib/lokinet/bootstrap.signed";
}
#endif // Q_OS_MACOS

View File

@ -20,6 +20,7 @@ protected:
bool doStopLokinetProcess() override;
bool doForciblyStopLokinetProcess() override;
bool doGetProcessPid(int& pid) override;
QString getDefaultBootstrapFileLocation() override;
};