@@ -53,9 +53,9 @@ func getPodmanInfo(containerConfig *lib.ContainerConfig, specDump *specs.Spec, t
53
53
Engine : "Podman" ,
54
54
}
55
55
56
- // Try to get network information from network.status file
56
+ // To get network information from network.status file
57
57
if specDump .Annotations ["io.container.manager" ] == "libpod" {
58
- // Create temp dir for network status file
58
+ // temp dir for network status file
59
59
tmpDir , err := os .MkdirTemp ("" , "network-status" )
60
60
if err == nil {
61
61
defer os .RemoveAll (tmpDir )
@@ -144,7 +144,7 @@ func ShowContainerCheckpoints(tasks []Task) error {
144
144
"Created" ,
145
145
"Engine" ,
146
146
}
147
- // Always include network columns in header
147
+ // including network columns in header
148
148
header = append (header , "IP" , "MAC" , "CHKPT Size" , "Root Fs Diff Size" )
149
149
150
150
for _ , task := range tasks {
@@ -170,7 +170,7 @@ func ShowContainerCheckpoints(tasks []Task) error {
170
170
fmt .Printf ("\n Displaying container checkpoint data from %s\n \n " , task .CheckpointFilePath )
171
171
}
172
172
173
- // Always include network and size information
173
+ // including network and size information
174
174
row = append (row , info .containerInfo .IP )
175
175
row = append (row , info .containerInfo .MAC )
176
176
row = append (row , lib .ByteToString (info .archiveSizes .checkpointSize ))
0 commit comments