blob: 7595fee6ac2f543e201d1623176515f9feabca2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
"""Remote client command for deleting containers."""
import sys
import podman
from .. import AbstractActionBase
class Rm(AbstractActionBase):
"""Class for removing containers from storage."""
@classmethod
def subparser(cls, parent):
"""Add Rm command to parent parser."""
parser = parent.add_parser('rm', help='delete container(s)')
parser.add_argument(
'-f',
'--force',
action='store_true',
help=('force delete of running container(s).'
' (default: %(default)s)'))
parser.add_argument(
'targets', nargs='*', help='container id(s) to delete')
parser.set_defaults(klass=cls, method='remove')
def __init__(self, args):
"""Construct Rm class."""
super().__init__(args)
if len(args.targets) < 1:
raise ValueError('You must supply at least one container id'
' or name to be deleted.')
def remove(self):
"""Remove container(s)."""
for id in self._args.targets:
try:
ctnr = self.client.containers.get(id)
ctnr.remove(self._args.force)
print(id)
except podman.ContainerNotFound as e:
sys.stdout.flush()
print(
'Container {} not found.'.format(e.name),
file=sys.stderr,
flush=True)
except podman.ErrorOccurred as e:
sys.stdout.flush()
print(
'{}'.format(e.reason).capitalize(),
file=sys.stderr,
flush=True)
|