diff options
| author | Jon Robertson <jonrober@stanford.edu> | 2015-02-17 12:29:11 -0800 | 
|---|---|---|
| committer | Jon Robertson <jonrober@stanford.edu> | 2015-06-08 15:24:34 -0700 | 
| commit | 7181c4e75fbd3e0a4d16aad5f227fd4ecb94ccc0 (patch) | |
| tree | 93e3de64bc4aa32e776474b5063531f6494622b1 | |
| parent | ac97f9268b927cec5af229f496b9dd66332445e4 (diff) | |
Added service type to Stanford policy for password
Added to the password object type a new naming set for service/*,
specifically for things that belong to a non-host-specific service.
Change-Id: I1481d48319a5833f00eae940a6d2ca912874bb01
| -rw-r--r-- | perl/lib/Wallet/Policy/Stanford.pm | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/perl/lib/Wallet/Policy/Stanford.pm b/perl/lib/Wallet/Policy/Stanford.pm index 4a3c445..39a8174 100644 --- a/perl/lib/Wallet/Policy/Stanford.pm +++ b/perl/lib/Wallet/Policy/Stanford.pm @@ -82,7 +82,8 @@ our %PASSWORD_TYPE = (      'root'            => { host => 1 },      'tivoli'          => { host => 1 },      'system'          => { host => 1, extra => 1, need_extra => 1 }, -    'app'             => {            extra => 1 }, +    'app'             => { host => 1, extra => 1, need_extra => 1 }, +    'service'         => {            extra => 1, need_extra => 1 },  );  # Host-based file object types for the legacy file object naming scheme. | 
