-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
40 additions
and
2 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# OSX | ||
|
||
Install (Homebrew)[https://brew.sh]. | ||
|
||
Run the `install_deps.sh` script to install the build dependencies. | ||
You may want to copy it to a local file and remove things you don't | ||
care about such as postgresql, etc. | ||
|
||
Install Xcode from the app store. | ||
|
||
Install the xcode command-line tools. | ||
|
||
``` | ||
xcode-select --install | ||
``` | ||
|
||
Update the `~/.zshrc` | ||
|
||
``` | ||
cat scripts/osx/bash_profile >> ~/.zshrc | ||
``` | ||
|
||
Open a new shell. | ||
|
||
``` | ||
git clone https://github.com/FreeRADIUS/freeradius-server.git | ||
cd freeradius-server | ||
./configure | ||
make | ||
``` | ||
|
||
|
||
## Running FreeRADIUS in the background all of the time. | ||
|
||
You don't need this. It's here for future reference. | ||
|
||
``` | ||
cp ./org.freeradius.radius.plist /Library/LaunchDaemons | ||
launchctl load -w Library/LaunchDaemons/org.freeradius.radiusd.plist | ||
``` |