You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
gatewaySystemdInstallCmd.Flags().String("name", "", "The name of the gateway")
534
534
gatewaySystemdInstallCmd.Flags().String("relay", "", "The name of the relay (deprecated, use --target-relay-name)") // Deprecated, use --target-relay-name instead
535
535
gatewaySystemdInstallCmd.Flags().String("target-relay-name", "", "The name of the relay")
536
-
gatewaySystemdInstallCmd.Flags().String("service-log-file", "", "The file to write the service logs to. Example: /var/log/infisical/gateway.log. If not provided, logs will not be written to a file.")
536
+
gatewaySystemdInstallCmd.Flags().String("log-file", "", "The file to write the service logs to. Example: /var/log/infisical/gateway.log. If not provided, logs will not be written to a file.")
util.HandleError(err, "Unable to parse service-log-file flag")
211
+
util.HandleError(err, "Unable to parse log-file flag")
212
212
}
213
213
214
214
ifinstanceType=="instance"&&relayAuthSecret=="" {
@@ -270,7 +270,7 @@ func init() {
270
270
271
271
// systemd install command flags
272
272
relaySystemdInstallCmd.Flags().String("token", "", "Connect with Infisical using machine identity access token (org type)")
273
-
relaySystemdInstallCmd.Flags().String("service-log-file", "", "The file to write the service logs to. Example: /var/log/infisical/relay.log. If not provided, logs will not be written to a file.")
273
+
relaySystemdInstallCmd.Flags().String("log-file", "", "The file to write the service logs to. Example: /var/log/infisical/relay.log. If not provided, logs will not be written to a file.")
274
274
relaySystemdInstallCmd.Flags().String("domain", "", "Domain of your self-hosted Infisical instance")
275
275
relaySystemdInstallCmd.Flags().String("name", "", "The name of the relay")
276
276
relaySystemdInstallCmd.Flags().String("host", "", "The IP or hostname for the relay")
0 commit comments