2020-12-21 14:37:30 +01:00
|
|
|
#!/usr/bin/python
|
|
|
|
# -*- coding: utf-8 -*-
|
2022-02-07 06:21:24 +01:00
|
|
|
#
|
2022-08-05 12:28:29 +02:00
|
|
|
# Copyright (c) 2020, Jeffrey van Pelt (@Thulium-Drake) <jeff@vanpelt.one>
|
|
|
|
# GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt)
|
|
|
|
# SPDX-License-Identifier: GPL-3.0-or-later
|
2020-12-21 14:37:30 +01:00
|
|
|
|
|
|
|
from __future__ import absolute_import, division, print_function
|
|
|
|
__metaclass__ = type
|
|
|
|
|
|
|
|
DOCUMENTATION = r'''
|
|
|
|
---
|
|
|
|
module: proxmox_snap
|
|
|
|
short_description: Snapshot management of instances in Proxmox VE cluster
|
|
|
|
version_added: 2.0.0
|
|
|
|
description:
|
2022-04-25 06:39:15 +02:00
|
|
|
- Allows you to create/delete/restore snapshots from instances in Proxmox VE cluster.
|
2020-12-21 14:37:30 +01:00
|
|
|
- Supports both KVM and LXC, OpenVZ has not been tested, as it is no longer supported on Proxmox VE.
|
Add attributes to atomic, memset, one, oneview, packet, proxmox, and xenserver modules (#5958)
Add attributes to atomic, memset, one, oneview, packet, proxmox, and xenserver modules.
2023-02-20 17:27:38 +01:00
|
|
|
attributes:
|
|
|
|
check_mode:
|
|
|
|
support: full
|
|
|
|
diff_mode:
|
|
|
|
support: none
|
2020-12-21 14:37:30 +01:00
|
|
|
options:
|
|
|
|
hostname:
|
|
|
|
description:
|
|
|
|
- The instance name.
|
|
|
|
type: str
|
|
|
|
vmid:
|
|
|
|
description:
|
|
|
|
- The instance id.
|
|
|
|
- If not set, will be fetched from PromoxAPI based on the hostname.
|
|
|
|
type: str
|
|
|
|
state:
|
|
|
|
description:
|
|
|
|
- Indicate desired state of the instance snapshot.
|
2023-06-15 15:48:17 +02:00
|
|
|
- The V(rollback) value was added in community.general 4.8.0.
|
2022-04-25 06:39:15 +02:00
|
|
|
choices: ['present', 'absent', 'rollback']
|
2020-12-21 14:37:30 +01:00
|
|
|
default: present
|
|
|
|
type: str
|
|
|
|
force:
|
|
|
|
description:
|
|
|
|
- For removal from config file, even if removing disk snapshot fails.
|
2022-08-24 20:16:25 +02:00
|
|
|
default: false
|
2020-12-21 14:37:30 +01:00
|
|
|
type: bool
|
2022-09-28 22:48:11 +02:00
|
|
|
unbind:
|
|
|
|
description:
|
|
|
|
- This option only applies to LXC containers.
|
|
|
|
- Allows to snapshot a container even if it has configured mountpoints.
|
|
|
|
- Temporarily disables all configured mountpoints, takes snapshot, and finally restores original configuration.
|
|
|
|
- If running, the container will be stopped and restarted to apply config changes.
|
2023-06-15 15:48:17 +02:00
|
|
|
- Due to restrictions in the Proxmox API this option can only be used authenticating as V(root@pam) with O(api_password), API tokens do not work either.
|
2022-09-28 22:48:11 +02:00
|
|
|
- See U(https://pve.proxmox.com/pve-docs/api-viewer/#/nodes/{node}/lxc/{vmid}/config) (PUT tab) for more details.
|
|
|
|
default: false
|
|
|
|
type: bool
|
|
|
|
version_added: 5.7.0
|
2020-12-21 14:37:30 +01:00
|
|
|
vmstate:
|
|
|
|
description:
|
|
|
|
- Snapshot includes RAM.
|
2022-08-24 20:16:25 +02:00
|
|
|
default: false
|
2020-12-21 14:37:30 +01:00
|
|
|
type: bool
|
|
|
|
description:
|
|
|
|
description:
|
|
|
|
- Specify the description for the snapshot. Only used on the configuration web interface.
|
|
|
|
- This is saved as a comment inside the configuration file.
|
|
|
|
type: str
|
|
|
|
timeout:
|
|
|
|
description:
|
|
|
|
- Timeout for operations.
|
|
|
|
default: 30
|
|
|
|
type: int
|
|
|
|
snapname:
|
|
|
|
description:
|
2022-04-25 06:39:15 +02:00
|
|
|
- Name of the snapshot that has to be created/deleted/restored.
|
2020-12-21 14:37:30 +01:00
|
|
|
default: 'ansible_snap'
|
|
|
|
type: str
|
2023-06-09 12:56:22 +02:00
|
|
|
retention:
|
|
|
|
description:
|
|
|
|
- Remove old snapshots if there are more than O(retention) snapshots.
|
|
|
|
- If O(retention) is set to V(0), all snapshots will be kept.
|
|
|
|
- This is only used when O(state=present) and when an actual snapshot is created.
|
|
|
|
If no snapshot is created, all existing snapshots will be kept.
|
|
|
|
default: 0
|
|
|
|
type: int
|
|
|
|
version_added: 7.1.0
|
2020-12-21 14:37:30 +01:00
|
|
|
|
|
|
|
notes:
|
|
|
|
- Requires proxmoxer and requests modules on host. These modules can be installed with pip.
|
|
|
|
requirements: [ "proxmoxer", "python >= 2.7", "requests" ]
|
|
|
|
author: Jeffrey van Pelt (@Thulium-Drake)
|
2022-02-07 06:21:24 +01:00
|
|
|
extends_documentation_fragment:
|
|
|
|
- community.general.proxmox.documentation
|
Add attributes to atomic, memset, one, oneview, packet, proxmox, and xenserver modules (#5958)
Add attributes to atomic, memset, one, oneview, packet, proxmox, and xenserver modules.
2023-02-20 17:27:38 +01:00
|
|
|
- community.general.attributes
|
2020-12-21 14:37:30 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
EXAMPLES = r'''
|
|
|
|
- name: Create new container snapshot
|
|
|
|
community.general.proxmox_snap:
|
|
|
|
api_user: root@pam
|
|
|
|
api_password: 1q2w3e
|
|
|
|
api_host: node1
|
|
|
|
vmid: 100
|
|
|
|
state: present
|
|
|
|
snapname: pre-updates
|
|
|
|
|
2023-06-09 12:56:22 +02:00
|
|
|
- name: Create new container snapshot and keep only the 2 newest snapshots
|
|
|
|
community.general.proxmox_snap:
|
|
|
|
api_user: root@pam
|
|
|
|
api_password: 1q2w3e
|
|
|
|
api_host: node1
|
|
|
|
vmid: 100
|
|
|
|
state: present
|
|
|
|
snapname: snapshot-42
|
|
|
|
retention: 2
|
|
|
|
|
2022-09-28 22:48:11 +02:00
|
|
|
- name: Create new snapshot for a container with configured mountpoints
|
|
|
|
community.general.proxmox_snap:
|
|
|
|
api_user: root@pam
|
|
|
|
api_password: 1q2w3e
|
|
|
|
api_host: node1
|
|
|
|
vmid: 100
|
|
|
|
state: present
|
|
|
|
unbind: true # requires root@pam+password auth, API tokens are not supported
|
|
|
|
snapname: pre-updates
|
|
|
|
|
2020-12-21 14:37:30 +01:00
|
|
|
- name: Remove container snapshot
|
|
|
|
community.general.proxmox_snap:
|
|
|
|
api_user: root@pam
|
|
|
|
api_password: 1q2w3e
|
|
|
|
api_host: node1
|
|
|
|
vmid: 100
|
|
|
|
state: absent
|
|
|
|
snapname: pre-updates
|
2022-04-25 06:39:15 +02:00
|
|
|
|
|
|
|
- name: Rollback container snapshot
|
|
|
|
community.general.proxmox_snap:
|
|
|
|
api_user: root@pam
|
|
|
|
api_password: 1q2w3e
|
|
|
|
api_host: node1
|
|
|
|
vmid: 100
|
|
|
|
state: rollback
|
|
|
|
snapname: pre-updates
|
2020-12-21 14:37:30 +01:00
|
|
|
'''
|
|
|
|
|
|
|
|
RETURN = r'''#'''
|
|
|
|
|
|
|
|
import time
|
|
|
|
|
2022-09-09 22:23:48 +02:00
|
|
|
from ansible.module_utils.basic import AnsibleModule
|
2021-06-26 23:59:11 +02:00
|
|
|
from ansible.module_utils.common.text.converters import to_native
|
2022-09-09 22:23:48 +02:00
|
|
|
from ansible_collections.community.general.plugins.module_utils.proxmox import (proxmox_auth_argument_spec, ProxmoxAnsible)
|
2020-12-21 14:37:30 +01:00
|
|
|
|
|
|
|
|
2022-02-07 06:21:24 +01:00
|
|
|
class ProxmoxSnapAnsible(ProxmoxAnsible):
|
|
|
|
def snapshot(self, vm, vmid):
|
|
|
|
return getattr(self.proxmox_api.nodes(vm['node']), vm['type'])(vmid).snapshot
|
2020-12-21 14:37:30 +01:00
|
|
|
|
2022-09-28 22:48:11 +02:00
|
|
|
def vmconfig(self, vm, vmid):
|
|
|
|
return getattr(self.proxmox_api.nodes(vm['node']), vm['type'])(vmid).config
|
|
|
|
|
|
|
|
def vmstatus(self, vm, vmid):
|
|
|
|
return getattr(self.proxmox_api.nodes(vm['node']), vm['type'])(vmid).status
|
|
|
|
|
|
|
|
def _container_mp_get(self, vm, vmid):
|
|
|
|
cfg = self.vmconfig(vm, vmid).get()
|
|
|
|
mountpoints = {}
|
|
|
|
for key, value in cfg.items():
|
|
|
|
if key.startswith('mp'):
|
|
|
|
mountpoints[key] = value
|
|
|
|
return mountpoints
|
|
|
|
|
|
|
|
def _container_mp_disable(self, vm, vmid, timeout, unbind, mountpoints, vmstatus):
|
|
|
|
# shutdown container if running
|
|
|
|
if vmstatus == 'running':
|
|
|
|
self.shutdown_instance(vm, vmid, timeout)
|
|
|
|
# delete all mountpoints configs
|
|
|
|
self.vmconfig(vm, vmid).put(delete=' '.join(mountpoints))
|
|
|
|
|
|
|
|
def _container_mp_restore(self, vm, vmid, timeout, unbind, mountpoints, vmstatus):
|
|
|
|
# NOTE: requires auth as `root@pam`, API tokens are not supported
|
|
|
|
# see https://pve.proxmox.com/pve-docs/api-viewer/#/nodes/{node}/lxc/{vmid}/config
|
|
|
|
# restore original config
|
|
|
|
self.vmconfig(vm, vmid).put(**mountpoints)
|
|
|
|
# start container (if was running before snap)
|
|
|
|
if vmstatus == 'running':
|
|
|
|
self.start_instance(vm, vmid, timeout)
|
|
|
|
|
|
|
|
def start_instance(self, vm, vmid, timeout):
|
|
|
|
taskid = self.vmstatus(vm, vmid).start.post()
|
|
|
|
while timeout:
|
|
|
|
if self.api_task_ok(vm['node'], taskid):
|
|
|
|
return True
|
|
|
|
timeout -= 1
|
|
|
|
if timeout == 0:
|
|
|
|
self.module.fail_json(msg='Reached timeout while waiting for VM to start. Last line in task before timeout: %s' %
|
|
|
|
self.proxmox_api.nodes(vm['node']).tasks(taskid).log.get()[:1])
|
|
|
|
time.sleep(1)
|
|
|
|
return False
|
|
|
|
|
|
|
|
def shutdown_instance(self, vm, vmid, timeout):
|
|
|
|
taskid = self.vmstatus(vm, vmid).shutdown.post()
|
|
|
|
while timeout:
|
|
|
|
if self.api_task_ok(vm['node'], taskid):
|
|
|
|
return True
|
|
|
|
timeout -= 1
|
|
|
|
if timeout == 0:
|
|
|
|
self.module.fail_json(msg='Reached timeout while waiting for VM to stop. Last line in task before timeout: %s' %
|
|
|
|
self.proxmox_api.nodes(vm['node']).tasks(taskid).log.get()[:1])
|
|
|
|
time.sleep(1)
|
|
|
|
return False
|
|
|
|
|
2023-06-09 12:56:22 +02:00
|
|
|
def snapshot_retention(self, vm, vmid, retention):
|
|
|
|
# ignore the last snapshot, which is the current state
|
|
|
|
snapshots = self.snapshot(vm, vmid).get()[:-1]
|
|
|
|
if retention > 0 and len(snapshots) > retention:
|
|
|
|
# sort by age, oldest first
|
|
|
|
for snap in sorted(snapshots, key=lambda x: x['snaptime'])[:len(snapshots) - retention]:
|
|
|
|
self.snapshot(vm, vmid)(snap['name']).delete()
|
|
|
|
|
|
|
|
def snapshot_create(self, vm, vmid, timeout, snapname, description, vmstate, unbind, retention):
|
2022-02-07 06:21:24 +01:00
|
|
|
if self.module.check_mode:
|
2020-12-21 14:37:30 +01:00
|
|
|
return True
|
|
|
|
|
2022-02-07 06:21:24 +01:00
|
|
|
if vm['type'] == 'lxc':
|
2022-09-28 22:48:11 +02:00
|
|
|
if unbind is True:
|
|
|
|
# check if credentials will work
|
|
|
|
# WARN: it is crucial this check runs here!
|
|
|
|
# The correct permissions are required only to reconfig mounts.
|
|
|
|
# Not checking now would allow to remove the configuration BUT
|
|
|
|
# fail later, leaving the container in a misconfigured state.
|
|
|
|
if (
|
|
|
|
self.module.params['api_user'] != 'root@pam'
|
|
|
|
or not self.module.params['api_password']
|
|
|
|
):
|
|
|
|
self.module.fail_json(msg='`unbind=True` requires authentication as `root@pam` with `api_password`, API tokens are not supported.')
|
|
|
|
return False
|
|
|
|
mountpoints = self._container_mp_get(vm, vmid)
|
|
|
|
vmstatus = self.vmstatus(vm, vmid).current().get()['status']
|
|
|
|
if mountpoints:
|
|
|
|
self._container_mp_disable(vm, vmid, timeout, unbind, mountpoints, vmstatus)
|
2022-02-07 06:21:24 +01:00
|
|
|
taskid = self.snapshot(vm, vmid).post(snapname=snapname, description=description)
|
|
|
|
else:
|
|
|
|
taskid = self.snapshot(vm, vmid).post(snapname=snapname, description=description, vmstate=int(vmstate))
|
2022-09-28 22:48:11 +02:00
|
|
|
|
2022-02-07 06:21:24 +01:00
|
|
|
while timeout:
|
2022-09-28 22:48:11 +02:00
|
|
|
if self.api_task_ok(vm['node'], taskid):
|
2023-06-09 12:56:22 +02:00
|
|
|
break
|
2022-02-07 06:21:24 +01:00
|
|
|
if timeout == 0:
|
|
|
|
self.module.fail_json(msg='Reached timeout while waiting for creating VM snapshot. Last line in task before timeout: %s' %
|
|
|
|
self.proxmox_api.nodes(vm['node']).tasks(taskid).log.get()[:1])
|
|
|
|
|
|
|
|
time.sleep(1)
|
2022-04-25 06:39:15 +02:00
|
|
|
timeout -= 1
|
2022-09-28 22:48:11 +02:00
|
|
|
if vm['type'] == 'lxc' and unbind is True and mountpoints:
|
|
|
|
self._container_mp_restore(vm, vmid, timeout, unbind, mountpoints, vmstatus)
|
2023-06-09 12:56:22 +02:00
|
|
|
|
|
|
|
self.snapshot_retention(vm, vmid, retention)
|
|
|
|
return timeout > 0
|
2022-02-07 06:21:24 +01:00
|
|
|
|
|
|
|
def snapshot_remove(self, vm, vmid, timeout, snapname, force):
|
|
|
|
if self.module.check_mode:
|
2020-12-21 14:37:30 +01:00
|
|
|
return True
|
|
|
|
|
2022-02-07 06:21:24 +01:00
|
|
|
taskid = self.snapshot(vm, vmid).delete(snapname, force=int(force))
|
|
|
|
while timeout:
|
2022-09-28 22:48:11 +02:00
|
|
|
if self.api_task_ok(vm['node'], taskid):
|
2022-02-07 06:21:24 +01:00
|
|
|
return True
|
|
|
|
if timeout == 0:
|
|
|
|
self.module.fail_json(msg='Reached timeout while waiting for removing VM snapshot. Last line in task before timeout: %s' %
|
|
|
|
self.proxmox_api.nodes(vm['node']).tasks(taskid).log.get()[:1])
|
2020-12-21 14:37:30 +01:00
|
|
|
|
2022-02-07 06:21:24 +01:00
|
|
|
time.sleep(1)
|
2022-04-25 06:39:15 +02:00
|
|
|
timeout -= 1
|
|
|
|
return False
|
|
|
|
|
|
|
|
def snapshot_rollback(self, vm, vmid, timeout, snapname):
|
|
|
|
if self.module.check_mode:
|
|
|
|
return True
|
|
|
|
|
|
|
|
taskid = self.snapshot(vm, vmid)(snapname).post("rollback")
|
|
|
|
while timeout:
|
2022-09-28 22:48:11 +02:00
|
|
|
if self.api_task_ok(vm['node'], taskid):
|
2022-04-25 06:39:15 +02:00
|
|
|
return True
|
|
|
|
if timeout == 0:
|
|
|
|
self.module.fail_json(msg='Reached timeout while waiting for rolling back VM snapshot. Last line in task before timeout: %s' %
|
|
|
|
self.proxmox_api.nodes(vm['node']).tasks(taskid).log.get()[:1])
|
|
|
|
|
|
|
|
time.sleep(1)
|
|
|
|
timeout -= 1
|
2022-02-07 06:21:24 +01:00
|
|
|
return False
|
2020-12-21 14:37:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
def main():
|
2022-02-07 06:21:24 +01:00
|
|
|
module_args = proxmox_auth_argument_spec()
|
|
|
|
snap_args = dict(
|
|
|
|
vmid=dict(required=False),
|
|
|
|
hostname=dict(),
|
|
|
|
timeout=dict(type='int', default=30),
|
2022-04-25 06:39:15 +02:00
|
|
|
state=dict(default='present', choices=['present', 'absent', 'rollback']),
|
2022-02-07 06:21:24 +01:00
|
|
|
description=dict(type='str'),
|
|
|
|
snapname=dict(type='str', default='ansible_snap'),
|
2022-08-24 20:16:25 +02:00
|
|
|
force=dict(type='bool', default=False),
|
2022-09-28 22:48:11 +02:00
|
|
|
unbind=dict(type='bool', default=False),
|
2022-08-24 20:16:25 +02:00
|
|
|
vmstate=dict(type='bool', default=False),
|
2023-06-09 12:56:22 +02:00
|
|
|
retention=dict(type='int', default=0),
|
2022-02-07 06:21:24 +01:00
|
|
|
)
|
|
|
|
module_args.update(snap_args)
|
|
|
|
|
2020-12-21 14:37:30 +01:00
|
|
|
module = AnsibleModule(
|
2022-02-07 06:21:24 +01:00
|
|
|
argument_spec=module_args,
|
2020-12-21 14:37:30 +01:00
|
|
|
supports_check_mode=True
|
|
|
|
)
|
|
|
|
|
2022-02-07 06:21:24 +01:00
|
|
|
proxmox = ProxmoxSnapAnsible(module)
|
2020-12-21 14:37:30 +01:00
|
|
|
|
|
|
|
state = module.params['state']
|
|
|
|
vmid = module.params['vmid']
|
|
|
|
hostname = module.params['hostname']
|
|
|
|
description = module.params['description']
|
|
|
|
snapname = module.params['snapname']
|
|
|
|
timeout = module.params['timeout']
|
|
|
|
force = module.params['force']
|
2022-09-28 22:48:11 +02:00
|
|
|
unbind = module.params['unbind']
|
2020-12-21 14:37:30 +01:00
|
|
|
vmstate = module.params['vmstate']
|
2023-06-09 12:56:22 +02:00
|
|
|
retention = module.params['retention']
|
2020-12-21 14:37:30 +01:00
|
|
|
|
|
|
|
# If hostname is set get the VM id from ProxmoxAPI
|
|
|
|
if not vmid and hostname:
|
2022-04-26 11:45:15 +02:00
|
|
|
vmid = proxmox.get_vmid(hostname)
|
2020-12-21 14:37:30 +01:00
|
|
|
elif not vmid:
|
|
|
|
module.exit_json(changed=False, msg="Vmid could not be fetched for the following action: %s" % state)
|
|
|
|
|
2022-02-07 06:21:24 +01:00
|
|
|
vm = proxmox.get_vm(vmid)
|
2020-12-21 14:37:30 +01:00
|
|
|
|
|
|
|
if state == 'present':
|
|
|
|
try:
|
2022-02-07 06:21:24 +01:00
|
|
|
for i in proxmox.snapshot(vm, vmid).get():
|
2020-12-21 14:37:30 +01:00
|
|
|
if i['name'] == snapname:
|
|
|
|
module.exit_json(changed=False, msg="Snapshot %s is already present" % snapname)
|
|
|
|
|
2023-06-09 12:56:22 +02:00
|
|
|
if proxmox.snapshot_create(vm, vmid, timeout, snapname, description, vmstate, unbind, retention):
|
2020-12-21 14:37:30 +01:00
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=False, msg="Snapshot %s would be created" % snapname)
|
|
|
|
else:
|
|
|
|
module.exit_json(changed=True, msg="Snapshot %s created" % snapname)
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
module.fail_json(msg="Creating snapshot %s of VM %s failed with exception: %s" % (snapname, vmid, to_native(e)))
|
|
|
|
|
|
|
|
elif state == 'absent':
|
|
|
|
try:
|
|
|
|
snap_exist = False
|
|
|
|
|
2022-02-07 06:21:24 +01:00
|
|
|
for i in proxmox.snapshot(vm, vmid).get():
|
2020-12-21 14:37:30 +01:00
|
|
|
if i['name'] == snapname:
|
|
|
|
snap_exist = True
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not snap_exist:
|
|
|
|
module.exit_json(changed=False, msg="Snapshot %s does not exist" % snapname)
|
|
|
|
else:
|
2022-02-07 06:21:24 +01:00
|
|
|
if proxmox.snapshot_remove(vm, vmid, timeout, snapname, force):
|
2020-12-21 14:37:30 +01:00
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=False, msg="Snapshot %s would be removed" % snapname)
|
|
|
|
else:
|
|
|
|
module.exit_json(changed=True, msg="Snapshot %s removed" % snapname)
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
module.fail_json(msg="Removing snapshot %s of VM %s failed with exception: %s" % (snapname, vmid, to_native(e)))
|
2022-04-25 06:39:15 +02:00
|
|
|
elif state == 'rollback':
|
|
|
|
try:
|
|
|
|
snap_exist = False
|
|
|
|
|
|
|
|
for i in proxmox.snapshot(vm, vmid).get():
|
|
|
|
if i['name'] == snapname:
|
|
|
|
snap_exist = True
|
|
|
|
continue
|
|
|
|
|
|
|
|
if not snap_exist:
|
|
|
|
module.exit_json(changed=False, msg="Snapshot %s does not exist" % snapname)
|
|
|
|
if proxmox.snapshot_rollback(vm, vmid, timeout, snapname):
|
|
|
|
if module.check_mode:
|
|
|
|
module.exit_json(changed=True, msg="Snapshot %s would be rolled back" % snapname)
|
|
|
|
else:
|
|
|
|
module.exit_json(changed=True, msg="Snapshot %s rolled back" % snapname)
|
|
|
|
|
|
|
|
except Exception as e:
|
|
|
|
module.fail_json(msg="Rollback of snapshot %s of VM %s failed with exception: %s" % (snapname, vmid, to_native(e)))
|
2020-12-21 14:37:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
main()
|