Skip to content

Instantly share code, notes, and snippets.

@b4ldr
Last active April 16, 2020 10:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save b4ldr/dfe27f9a0cd69914e97d592088f1c026 to your computer and use it in GitHub Desktop.
Save b4ldr/dfe27f9a0cd69914e97d592088f1c026 to your computer and use it in GitHub Desktop.
class sqlite {
file{'/usr/local/share/myschema.sql':
ensure => file,
content => file('sqlite/myschema.sql')
}
exec{'sqllite3 /path/to/db.sql < /usr/local/share/myschema.sql':
refreshonly => true
subscribe => File['/usr/local/share/myschema.sql']
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment