another fix for the import
Dieser Commit ist enthalten in:
Ursprung
f843ffdef3
Commit
872e1c1883
|
@ -58,3 +58,7 @@ releases:
|
|||
changes:
|
||||
release_summary: fixed the import path
|
||||
release_date: "2024-02-11"
|
||||
0.3.8:
|
||||
changes:
|
||||
release_summary: fixed the import again.
|
||||
release_date: "2024-02-11"
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
---
|
||||
namespace: sebastian
|
||||
name: systemd
|
||||
version: 0.3.7
|
||||
version: 0.3.8
|
||||
|
||||
readme: README.md
|
||||
|
||||
|
|
|
@ -6,8 +6,8 @@ try:
|
|||
from ansible_module.module_utils.generic import SYSTEMD_NETWORK_CONFIG, Types, modspec
|
||||
from ansible_module.module_utils.module import SystemdUnitModule
|
||||
except ImportError:
|
||||
from ansible_collections.sebastian.base.module_utils.generic import SYSTEMD_NETWORK_CONFIG, Types, modspec
|
||||
from ansible_collections.sebastian.base.module_utils.module import SystemdUnitModule
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.generic import SYSTEMD_NETWORK_CONFIG, Types, modspec
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.module import SystemdUnitModule
|
||||
|
||||
|
||||
class Module(SystemdUnitModule): # type: ignore
|
||||
|
|
|
@ -6,8 +6,8 @@ try:
|
|||
from ansible_module.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types, modspec
|
||||
from ansible_module.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
except ImportError:
|
||||
from ansible_collections.sebastian.base.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types, modspec
|
||||
from ansible_collections.sebastian.base.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types, modspec
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
|
||||
SYSTEMD_SERVICE_CONFIG = pathlib.Path("/etc/systemd/system")
|
||||
|
||||
|
|
|
@ -6,8 +6,14 @@ try:
|
|||
from ansible_module.module_utils.generic import SYSTEMD_NETWORK_CONFIG, Types, joindict, modspec, systemdbool
|
||||
from ansible_module.module_utils.module import SystemdUnitModule
|
||||
except ImportError:
|
||||
from ansible_collections.sebastian.base.module_utils.generic import SYSTEMD_NETWORK_CONFIG, Types, joindict, modspec, systemdbool
|
||||
from ansible_collections.sebastian.base.module_utils.module import SystemdUnitModule
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.generic import (
|
||||
SYSTEMD_NETWORK_CONFIG,
|
||||
Types,
|
||||
joindict,
|
||||
modspec,
|
||||
systemdbool,
|
||||
)
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.module import SystemdUnitModule
|
||||
|
||||
kinds = (
|
||||
"bond",
|
||||
|
|
|
@ -6,8 +6,8 @@ try:
|
|||
from ansible_module.module_utils.generic import SYSTEMD_NETWORK_CONFIG, Types, modspec, systemdbool
|
||||
from ansible_module.module_utils.module import SystemdUnitModule
|
||||
except ImportError:
|
||||
from ansible_collections.sebastian.base.module_utils.generic import SYSTEMD_NETWORK_CONFIG, Types, modspec, systemdbool
|
||||
from ansible_collections.sebastian.base.module_utils.module import SystemdUnitModule
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.generic import SYSTEMD_NETWORK_CONFIG, Types, modspec, systemdbool
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.module import SystemdUnitModule
|
||||
|
||||
|
||||
class Module(SystemdUnitModule): # type: ignore
|
||||
|
|
|
@ -6,8 +6,8 @@ try:
|
|||
from ansible_module.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types, modspec
|
||||
from ansible_module.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
except ImportError:
|
||||
from ansible_collections.sebastian.base.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types, modspec
|
||||
from ansible_collections.sebastian.base.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types, modspec
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
|
||||
|
||||
@installable
|
||||
|
|
|
@ -6,8 +6,8 @@ try:
|
|||
from ansible_module.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types
|
||||
from ansible_module.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
except ImportError:
|
||||
from ansible_collections.sebastian.base.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types
|
||||
from ansible_collections.sebastian.base.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
|
||||
|
||||
@installable
|
||||
|
|
|
@ -6,8 +6,8 @@ try:
|
|||
from ansible_module.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types, systemdbool
|
||||
from ansible_module.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
except ImportError:
|
||||
from ansible_collections.sebastian.base.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types, systemdbool
|
||||
from ansible_collections.sebastian.base.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types, systemdbool
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
|
||||
__module_name__ = "TargetModule"
|
||||
|
||||
|
|
|
@ -6,8 +6,8 @@ try:
|
|||
from ansible_module.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types, modpec
|
||||
from ansible_module.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
except ImportError:
|
||||
from ansible_collections.sebastian.base.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types, modpec
|
||||
from ansible_collections.sebastian.base.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.generic import SYSTEMD_SERVICE_CONFIG, Types, modpec
|
||||
from ansible_collections.sebastian.base.plugins.module_utils.module import SystemdReloadMixin, SystemdUnitModule, installable
|
||||
|
||||
|
||||
@installable
|
||||
|
|
Laden…
In neuem Issue referenzieren