mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-07 18:08:53 +00:00
Merge pull request #88 from facebook/ca_certs_rename
renaming the cacerts table to ca_certs
This commit is contained in:
commit
be67dfcb8d
@ -12,7 +12,7 @@ if(APPLE)
|
||||
networking/routes.cpp
|
||||
networking/utils.cpp
|
||||
system/apps.cpp
|
||||
system/cacerts.cpp
|
||||
system/ca_certs.cpp
|
||||
system/firewall.cpp
|
||||
system/kextstat.cpp
|
||||
system/launchd.cpp
|
||||
@ -61,10 +61,10 @@ if(APPLE)
|
||||
TARGET_LINK_LIBRARIES(apps_tests osquery_tables)
|
||||
SET_TARGET_PROPERTIES(apps_tests PROPERTIES COMPILE_FLAGS "-std=c++11 -stdlib=libc++")
|
||||
|
||||
ADD_EXECUTABLE(cacerts_tests system/cacerts_tests.cpp)
|
||||
TARGET_LINK_LIBRARIES(cacerts_tests gtest)
|
||||
TARGET_LINK_LIBRARIES(cacerts_tests osquery_tables)
|
||||
SET_TARGET_PROPERTIES(cacerts_tests PROPERTIES COMPILE_FLAGS "-std=c++11 -stdlib=libc++")
|
||||
ADD_EXECUTABLE(ca_certs_tests system/ca_certs_tests.cpp)
|
||||
TARGET_LINK_LIBRARIES(ca_certs_tests gtest)
|
||||
TARGET_LINK_LIBRARIES(ca_certs_tests osquery_tables)
|
||||
SET_TARGET_PROPERTIES(ca_certs_tests PROPERTIES COMPILE_FLAGS "-std=c++11 -stdlib=libc++")
|
||||
|
||||
ADD_EXECUTABLE(firewall_tests system/firewall_tests.cpp)
|
||||
TARGET_LINK_LIBRARIES(firewall_tests gtest)
|
||||
|
@ -1,4 +1,4 @@
|
||||
table_name("cacerts")
|
||||
table_name("ca_certs")
|
||||
schema([
|
||||
Column(name="common_name", type="std::string"),
|
||||
Column(name="not_valid_before", type="std::string"),
|
||||
@ -10,4 +10,4 @@ schema([
|
||||
Column(name="sha1", type="std::string"),
|
||||
|
||||
])
|
||||
implementation("osquery/tables/system/cacerts@genCerts")
|
||||
implementation("osquery/tables/system/ca_certs@genCerts")
|
Loading…
Reference in New Issue
Block a user