Fix some comments

Signed-off-by: fanqiaojun <fanqiaojun@yeah.net>
This commit is contained in:
fanqiaojun
2024-04-13 15:20:19 +08:00
parent b8a684b64d
commit 1600cfffa5
8 changed files with 9 additions and 9 deletions

View File

@ -15,7 +15,7 @@ func UpdatePodmanDockerSockService(mc *vmconfigs.MachineConfig) error {
command := fmt.Sprintf("'echo %q > %s'", content, ignition.PodmanDockerTmpConfPath)
args := []string{"sudo", "bash", "-c", command}
if err := CommonSSH(mc.SSH.RemoteUsername, mc.SSH.IdentityPath, mc.Name, mc.SSH.Port, args); err != nil {
logrus.Warnf("Could not not update internal docker sock config")
logrus.Warnf("Could not update internal docker sock config")
return err
}