diff --git a/Makefile.am b/Makefile.am index 79c6b53..c1d22ee 100644 --- a/Makefile.am +++ b/Makefile.am @@ -213,9 +213,6 @@ EXTRA_DIST = vendor/* \ README.md \ DEVEL.md \ \ - test/attic/account_test.go \ - test/attic/file_test.go \ - test/attic/image_test.go \ test/file_test.go \ \ chart/Chart.yaml.in \ diff --git a/Makefile.in b/Makefile.in index ccde69b..f14ff13 100644 --- a/Makefile.in +++ b/Makefile.in @@ -470,9 +470,6 @@ EXTRA_DIST = vendor/* \ README.md \ DEVEL.md \ \ - test/attic/account_test.go \ - test/attic/file_test.go \ - test/attic/image_test.go \ test/file_test.go \ \ chart/Chart.yaml.in \ diff --git a/app/config/variant.go b/app/config/variant.go index e6225b5..0786735 100644 --- a/app/config/variant.go +++ b/app/config/variant.go @@ -1,10 +1,10 @@ package config const ( - confdir = "/home/ziggi/mstore2/etc/mstore" - rundir = "/home/ziggi/mstore2/tmp/run" - logdir = "/home/ziggi/mstore2/tmp/log" - datadir = "/home/ziggi/mstore2/tmp/data" + confdir = "/usr/local/etc/mstore" + rundir = "/var/run/mstore" + logdir = "/var/log/mstore" + datadir = "/var/data/mstore" version = "0.2.0" - srvname = "mstored" + srvname = "mstored" )