2015-06-19 04:58:54 +00:00
|
|
|
table_name("keychain_acls")
|
|
|
|
description("Applications that have ACL entries in the keychain.")
|
|
|
|
schema([
|
2015-06-22 06:34:53 +00:00
|
|
|
Column("keychain_path", TEXT, "The path of the keychain"),
|
2015-06-19 04:58:54 +00:00
|
|
|
Column("authorizations", TEXT, "A space delimited set of authorization attributes"),
|
2015-06-22 06:34:53 +00:00
|
|
|
Column("path", TEXT, "The path of the authorized application"),
|
2015-06-19 04:58:54 +00:00
|
|
|
Column("description", TEXT, "The description included with the ACL entry"),
|
|
|
|
Column("label", TEXT, "An optional label tag that may be included with the keychain entry"),
|
|
|
|
])
|
2016-05-18 19:23:52 +00:00
|
|
|
attributes(cacheable=True)
|
2015-06-19 04:58:54 +00:00
|
|
|
implementation("keychain_acl@genKeychainACLApps")
|
2015-06-22 16:38:17 +00:00
|
|
|
examples([
|
|
|
|
"select label, description, authorizations, path, count(path) as c from keychain_acls where label != '' and path != '' group by label having c > 1;",
|
|
|
|
])
|