aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorJoseph Richey <joerichey@google.com>2019-01-19 22:06:54 -0800
committerGitHub <noreply@github.com>2019-01-19 22:06:54 -0800
commit8956903569b187652d7f068800c240b24cb2e41e (patch)
tree2778b958dfb30b60f5294f62309a87cf9d5c68b0 /README.md
parent509bb4d450cdd923bf09d05a5622cb6e98646bce (diff)
parent781395bba8fed008ef8ada0aa2f5f781a5bad30b (diff)
Merge pull request #122 from google/pam
Install pam modules/configs to the right location
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 5 insertions, 4 deletions
diff --git a/README.md b/README.md
index 3fb30e1..c5f9ca7 100644
--- a/README.md
+++ b/README.md
@@ -121,13 +121,14 @@ Once all the dependencies are installed, you can get the repository by running:
go get -d github.com/google/fscrypt/...
```
Running `make` in `$GOPATH/src/github.com/google/fscrypt` builds the
-executable (`fscrypt`) and PAM module (`pam-fscrypt.so`) in the `bin/`
+executable (`fscrypt`) and PAM module (`pam_fscrypt.so`) in the `bin/`
directory. Use `make bin/fscrypt` or `make bin/pam_fscrypt.so`
to build only one.
-Running `sudo make install` installs `fscrypt` to `/usr/local/bin` and
-`pam-fscrypt` to `/lib/security`. Use `make install-bin` or `make install-pam`
-to install only one.
+Running `sudo make install` installs `fscrypt` to `/usr/local/bin`,
+`pam_fscrypt.so` to `/usr/local/lib/security`, and `pam_fscrypt/config` to
+`/usr/local/share/pam-configs`. Use `make install-bin` to only install
+`fscrypt`. Use `make install-pam` to only install the pam files.
See the `Makefile` for instructions on how to customize the build (e.g. installing
to a custom location, using different build flags, building a static binary,