Merge pull request #88 from facebook/ca_certs_rename

renaming the cacerts table to ca_certs
This commit is contained in:
Mike Arpaia 2014-09-01 18:47:42 -07:00
commit be67dfcb8d
4 changed files with 7 additions and 7 deletions

View File

@ -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)

View File

@ -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")