Last active
December 27, 2015 17:49
-
-
Save KushalP/7364901 to your computer and use it in GitHub Desktop.
Example dummy data for historical facts in PuppetDB
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
BEGIN; | |
INSERT INTO certnames (name, deactivated) VALUES ('dummy', NOW()); | |
INSERT INTO certname_facts_metadata (certname, timestamp) VALUES ('dummy', NOW()); | |
INSERT INTO certname_facts (certname, name, value) VALUES ('dummy', 'REVISION', 'SOME SHA1'); | |
COMMIT; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment