From 081f0efa0bff37079a12b52ea6f8bca952f0eb40 Mon Sep 17 00:00:00 2001 From: Brad Rydzewski Date: Thu, 4 Jun 2015 13:31:48 -0700 Subject: [PATCH] dumb mistake excluded toml in deb --- .gitignore | 3 ++- dist/drone/etc/drone/drone.toml | 36 +++++++++++++++++++++++++++++++++ 2 files changed, 38 insertions(+), 1 deletion(-) create mode 100644 dist/drone/etc/drone/drone.toml diff --git a/.gitignore b/.gitignore index 19d536fa7..764493cf2 100644 --- a/.gitignore +++ b/.gitignore @@ -18,9 +18,10 @@ drone *.rice-box.go *.db *.txt -*.toml *.min.js *_bindata.go +*.toml +!dist/drone/etc/drone/drone.toml # generate binaries cmd/drone-agent/drone-agent diff --git a/dist/drone/etc/drone/drone.toml b/dist/drone/etc/drone/drone.toml new file mode 100644 index 000000000..4fb4f0c00 --- /dev/null +++ b/dist/drone/etc/drone/drone.toml @@ -0,0 +1,36 @@ +[server] +addr = ":80" +cert = "" +key = "" + +# [session] +# secret = "" +# expires = "" + +[database] +path = "/var/lib/drone/drone.sqlite" + +[docker] +cert = "" +key = "" +addr = "unix:///var/run/docker.sock" +swarm = "" + +# [service] +# kind = "github" +# base = "https://github.com" +# orgs = [] +# open = false +# private = false +# skip_verify = true + +# [auth] +# client = "" +# secret = "" +# authorize = "https://github.com/login/oauth/authorize" +# access_token = "https://github.com/login/oauth/access_token" +# request_token = "" + +# [agents] +# secret = "" +