mirror of
				https://github.com/caddyserver/caddy.git
				synced 2025-10-31 02:09:27 +08:00 
			
		
		
		
	cmd: Create pidfile before config load (close #5477)
This commit is contained in:
		| @ -208,6 +208,16 @@ func cmdRun(fl Flags) (int, error) { | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	// create pidfile now, in case loading config takes a while (issue #5477) | ||||
| 	if runCmdPidfileFlag != "" { | ||||
| 		err := caddy.PIDFile(runCmdPidfileFlag) | ||||
| 		if err != nil { | ||||
| 			caddy.Log().Error("unable to write PID file", | ||||
| 				zap.String("pidfile", runCmdPidfileFlag), | ||||
| 				zap.Error(err)) | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	// run the initial config | ||||
| 	err = caddy.Load(config, true) | ||||
| 	if err != nil { | ||||
| @ -242,16 +252,6 @@ func cmdRun(fl Flags) (int, error) { | ||||
| 		go watchConfigFile(configFile, runCmdConfigAdapterFlag) | ||||
| 	} | ||||
|  | ||||
| 	// create pidfile | ||||
| 	if runCmdPidfileFlag != "" { | ||||
| 		err := caddy.PIDFile(runCmdPidfileFlag) | ||||
| 		if err != nil { | ||||
| 			caddy.Log().Error("unable to write PID file", | ||||
| 				zap.String("pidfile", runCmdPidfileFlag), | ||||
| 				zap.Error(err)) | ||||
| 		} | ||||
| 	} | ||||
|  | ||||
| 	// warn if the environment does not provide enough information about the disk | ||||
| 	hasXDG := os.Getenv("XDG_DATA_HOME") != "" && | ||||
| 		os.Getenv("XDG_CONFIG_HOME") != "" && | ||||
|  | ||||
		Reference in New Issue
	
	Block a user
	 Matthew Holt
					Matthew Holt