mirror of
https://github.com/restic/rest-server.git
synced 2026-09-25 13:31:31 -07:00
Use os.TempDir() for temporary directory in default path
This commit is contained in:
committed by
Michael Eischer
parent
1172d7e068
commit
223520b964
@@ -73,7 +73,7 @@ Flags:
|
|||||||
-v, --version version for rest-server
|
-v, --version version for rest-server
|
||||||
```
|
```
|
||||||
|
|
||||||
By default the server persists backup data in `/tmp/restic`. To start the server with a custom persistence directory and with authentication disabled:
|
By default the server persists backup data in the O.S. temporary directory (`/tmp/restic` on Linux/BSD and others, in `%TEMP%\\restic` in Windows, etc). **If `rest-server` is launched using the default path, all backups will be lost**. To start the server with a custom persistence directory and with authentication disabled:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
rest-server --path /user/home/backup --no-auth
|
rest-server --path /user/home/backup --no-auth
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
Bugfix: Use platform-specific temporary directory in default path
|
||||||
|
|
||||||
|
Instead of using hardcoded value for temporary directory, rest-server now uses
|
||||||
|
Go standard library functions to retrieve the temporary directory path for the
|
||||||
|
current platform.
|
||||||
|
|
||||||
|
https://github.com/restic/rest-server/issues/157
|
||||||
|
https://github.com/restic/rest-server/pull/158
|
||||||
@@ -27,7 +27,7 @@ var cmdRoot = &cobra.Command{
|
|||||||
}
|
}
|
||||||
|
|
||||||
var server = restserver.Server{
|
var server = restserver.Server{
|
||||||
Path: "/tmp/restic",
|
Path: filepath.Join(os.TempDir(), "restic"),
|
||||||
Listen: ":8000",
|
Listen: ":8000",
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user