Skip to content

Commit

Permalink
changing default file paths
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduardo committed Dec 5, 2019
1 parent 200ef76 commit 40e828b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cmd/rsa.go
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ func init() {
&serverConfig.ConfigPath,
"config",
"c",
"/etc/dtc/config.yaml",
"./config.yaml",
"path where to output the local config file")
rsaCmd.Flags().StringVarP(
&serverConfig.NodesConfigPath,
Expand All @@ -36,13 +36,13 @@ func init() {
&serverConfig.LogPath,
"log",
"l",
"/var/log/dtc.log",
"/tmp/dtc.log",
"path to a file where to output the services logs")
rsaCmd.Flags().StringVarP(
&serverConfig.DBPath,
"db",
"d",
"/etc/dtc/db.sqlite3",
"./db.sqlite3",
"path to a file where to put Sqlite3 database")
rsaCmd.Flags().IntVarP(
&serverConfig.Threshold,
Expand Down

0 comments on commit 40e828b

Please sign in to comment.