diff options
| author | Eric Biggers <ebiggers@google.com> | 2020-05-13 19:14:13 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-05-13 19:14:13 -0700 |
| commit | bc9f5e542745f102de70ade555114eb28591fcd1 (patch) | |
| tree | f4efba9210cb59a614f2c98bdb9217642d6c6ed5 /cmd/fscrypt | |
| parent | 7cc81fcdf21ed74ff01fc52d79a40773b74a62f9 (diff) | |
cmd/fscrypt: link to guide when interactively creating login protector (#225)
Update https://github.com/google/fscrypt/issues/220
Diffstat (limited to 'cmd/fscrypt')
| -rw-r--r-- | cmd/fscrypt/protector.go | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/cmd/fscrypt/protector.go b/cmd/fscrypt/protector.go index 6d35d9e..ac864dd 100644 --- a/cmd/fscrypt/protector.go +++ b/cmd/fscrypt/protector.go @@ -21,6 +21,7 @@ package main import ( + "fmt" "log" "github.com/google/fscrypt/actions" @@ -38,9 +39,18 @@ func createProtectorFromContext(ctx *actions.Context) (*actions.Protector, error } log.Printf("using source: %s", ctx.Config.Source.String()) - if ctx.Config.Source == metadata.SourceType_pam_passphrase && - userFlag.Value == "" && util.IsUserRoot() { - return nil, ErrSpecifyUser + if ctx.Config.Source == metadata.SourceType_pam_passphrase { + if userFlag.Value == "" && util.IsUserRoot() { + return nil, ErrSpecifyUser + } + if !quietFlag.Value { + fmt.Print(` +IMPORTANT: Before continuing, ensure you have properly set up your system for + login protectors. See + https://github.com/google/fscrypt#setting-up-for-login-protectors + +`) + } } name, err := promptForName(ctx) |