mirror of
https://github.com/go-acme/lego.git
synced 2024-12-23 01:07:23 +02:00
Remove global paths and default to CWD/.lego for storage. Overridable through --path.
This commit is contained in:
parent
84c2bceade
commit
805cef4dd6
2
.gitignore
vendored
2
.gitignore
vendored
@ -1 +1,3 @@
|
|||||||
lego.exe
|
lego.exe
|
||||||
|
lego
|
||||||
|
.lego
|
||||||
|
33
cli.go
33
cli.go
@ -3,6 +3,7 @@ package main
|
|||||||
import (
|
import (
|
||||||
"log"
|
"log"
|
||||||
"os"
|
"os"
|
||||||
|
"path"
|
||||||
|
|
||||||
"github.com/codegangsta/cli"
|
"github.com/codegangsta/cli"
|
||||||
)
|
)
|
||||||
@ -25,6 +26,12 @@ func main() {
|
|||||||
app.Usage = "Let's encrypt client to go!"
|
app.Usage = "Let's encrypt client to go!"
|
||||||
app.Version = "0.0.1"
|
app.Version = "0.0.1"
|
||||||
|
|
||||||
|
cwd, err := os.Getwd()
|
||||||
|
if err != nil {
|
||||||
|
logger().Fatal("Could not determine current working directory. Please pass --path.")
|
||||||
|
}
|
||||||
|
defaultPath := path.Join(cwd, ".lego")
|
||||||
|
|
||||||
app.Commands = []cli.Command{
|
app.Commands = []cli.Command{
|
||||||
{
|
{
|
||||||
Name: "run",
|
Name: "run",
|
||||||
@ -109,29 +116,9 @@ func main() {
|
|||||||
Usage: "Skip the end user license agreement screen.",
|
Usage: "Skip the end user license agreement screen.",
|
||||||
},
|
},
|
||||||
cli.StringFlag{
|
cli.StringFlag{
|
||||||
Name: "config-dir",
|
Name: "path",
|
||||||
Value: configDir,
|
Usage: "Directory to use for storing the data",
|
||||||
Usage: "Configuration directory.",
|
Value: defaultPath,
|
||||||
},
|
|
||||||
cli.StringFlag{
|
|
||||||
Name: "work-dir",
|
|
||||||
Value: workDir,
|
|
||||||
Usage: "Working directory.",
|
|
||||||
},
|
|
||||||
cli.StringFlag{
|
|
||||||
Name: "backup-dir",
|
|
||||||
Value: backupDir,
|
|
||||||
Usage: "Configuration backups directory.",
|
|
||||||
},
|
|
||||||
cli.StringFlag{
|
|
||||||
Name: "key-dir",
|
|
||||||
Value: keyDir,
|
|
||||||
Usage: "Keys storage.",
|
|
||||||
},
|
|
||||||
cli.StringFlag{
|
|
||||||
Name: "cert-dir",
|
|
||||||
Value: certDir,
|
|
||||||
Usage: "Certificates storage.",
|
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -17,7 +17,7 @@ func checkFolder(path string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func run(c *cli.Context) {
|
func run(c *cli.Context) {
|
||||||
err := checkFolder(c.GlobalString("config-dir"))
|
err := checkFolder(c.GlobalString("path"))
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger().Fatalf("Cound not check/create path: %v", err)
|
logger().Fatalf("Cound not check/create path: %v", err)
|
||||||
}
|
}
|
||||||
|
@ -34,7 +34,7 @@ func (c *Configuration) ServerPath() string {
|
|||||||
// AccountsPath returns the OS dependent path to the
|
// AccountsPath returns the OS dependent path to the
|
||||||
// local accounts for a specific CA
|
// local accounts for a specific CA
|
||||||
func (c *Configuration) AccountsPath() string {
|
func (c *Configuration) AccountsPath() string {
|
||||||
return path.Join(c.context.GlobalString("config-dir"), "accounts", c.ServerPath())
|
return path.Join(c.context.GlobalString("path"), "accounts", c.ServerPath())
|
||||||
}
|
}
|
||||||
|
|
||||||
// AccountPath returns the OS dependent path to a particular account
|
// AccountPath returns the OS dependent path to a particular account
|
||||||
|
11
path_unix.go
11
path_unix.go
@ -1,11 +0,0 @@
|
|||||||
// +build !windows
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
var (
|
|
||||||
configDir = "/etc/letsencrypt"
|
|
||||||
workDir = "/var/lib/letsencrypt"
|
|
||||||
backupDir = "/var/lib/letsencrypt/backups"
|
|
||||||
keyDir = "/etc/letsencrypt/keys"
|
|
||||||
certDir = "/etc/letsencrypt/certs"
|
|
||||||
)
|
|
@ -1,13 +0,0 @@
|
|||||||
// +build !linux
|
|
||||||
|
|
||||||
package main
|
|
||||||
|
|
||||||
import "os"
|
|
||||||
|
|
||||||
var (
|
|
||||||
configDir = os.ExpandEnv("${PROGRAMDATA}\\letsencrypt")
|
|
||||||
workDir = os.ExpandEnv("${PROGRAMDATA}\\letsencrypt")
|
|
||||||
backupDir = os.ExpandEnv("${PROGRAMDATA}\\letsencrypt\\backups")
|
|
||||||
keyDir = os.ExpandEnv("${PROGRAMDATA}\\letsencrypt\\keys")
|
|
||||||
certDir = os.ExpandEnv("${PROGRAMDATA}\\letsencrypt\\certs")
|
|
||||||
)
|
|
Loading…
Reference in New Issue
Block a user