diff options
| author | Stefan Lendl <s.lendl@proxmox.com> | 2024-04-05 15:17:59 +0200 |
|---|---|---|
| committer | Thomas Lamprecht <t.lamprecht@proxmox.com> | 2024-04-08 17:57:18 +0200 |
| commit | cac88dfa471ab514f36ae72d51c5db2ae5de2d55 (patch) | |
| tree | cb2e7ed20ebd44fb4a5415adda8a1dca6859c446 /src | |
| parent | 2f37fddc0ebcb039df3703ff4a251d33f05e9f2e (diff) | |
dns: dnsmasq: extract function to systemctl command.
systemctl_service() is a wrapper around PVE::Tools::run_command to allow
mocking the systemctl interactions in tests.
Signed-off-by: Stefan Lendl <s.lendl@proxmox.com>
Reviewed-by: Max Carrara <m.carrara@proxmox.com>
Tested-by: Max Carrara <m.carrara@proxmox.com>
Reviewed-by: Stefan Hanreich <s.hanreich@proxmox.com>
Tested-by: Stefan Hanreich <s.hanreich@proxmox.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/PVE/Network/SDN/Dhcp/Dnsmasq.pm | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/src/PVE/Network/SDN/Dhcp/Dnsmasq.pm b/src/PVE/Network/SDN/Dhcp/Dnsmasq.pm index 2844943..f9f1c39 100644 --- a/src/PVE/Network/SDN/Dhcp/Dnsmasq.pm +++ b/src/PVE/Network/SDN/Dhcp/Dnsmasq.pm @@ -101,7 +101,7 @@ sub add_ip_mapping { } my $service_name = "dnsmasq\@$dhcpid"; - PVE::Tools::run_command(['systemctl', 'reload', $service_name]) if $reload; + systemctl_service('reload', $service_name) if $reload; #update lease as ip could still be associated to an old removed mac my $bus = Net::DBus->system(); @@ -163,6 +163,12 @@ sub configure_vnet { ); } +sub systemctl_service { + my ($action, $service) = @_; + + PVE::Tools::run_command(['systemctl', $action, $service]); +} + sub before_configure { my ($class, $dhcpid) = @_; @@ -250,9 +256,9 @@ sub after_configure { my $service_name = "dnsmasq\@$dhcpid"; - PVE::Tools::run_command(['systemctl', 'reload', 'dbus']); - PVE::Tools::run_command(['systemctl', 'enable', $service_name]); - PVE::Tools::run_command(['systemctl', 'restart', $service_name]); + systemctl_service('reload', 'dbus'); + systemctl_service('enable', $service_name); + systemctl_service('restart', $service_name); } sub before_regenerate { @@ -260,8 +266,8 @@ sub before_regenerate { return if !assert_dnsmasq_installed($noerr); - PVE::Tools::run_command(['systemctl', 'stop', "dnsmasq@*"]); - PVE::Tools::run_command(['systemctl', 'disable', 'dnsmasq@']); + systemctl_service('stop', "dnsmasq@*"); + systemctl_service('disable', 'dnsmasq@'); } sub after_regenerate { |
