Skip to content

Commit c6013bd

Browse files
authored
fix(migration): removing unneeded automated tags (#1444)
1 parent 6e4a2f2 commit c6013bd

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

packages/ns-migration/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
include $(TOPDIR)/rules.mk
77

88
PKG_NAME:=ns-migration
9-
PKG_VERSION:=1.0.0
9+
PKG_VERSION:=1.0.1
1010
PKG_RELEASE:=1
1111

1212
PKG_BUILD_DIR:=$(BUILD_DIR)/ns-migration-$(PKG_VERSION)

packages/ns-migration/files/scripts/network

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,8 +298,8 @@ for z in data['zones']:
298298
u.set("firewall", zname, "masq", '1')
299299
u.set("firewall", zname, "mtu_fix", '1')
300300
if z["name"].startswith("guest"): # setup DNS and DHCP access for guests
301-
firewall.add_template_rule(u, 'ns_guest_dns')
302-
firewall.add_template_rule(u, 'ns_guest_dhcp')
301+
firewall.add_template_rule(u, 'ns_guest_dns', tags=[])
302+
firewall.add_template_rule(u, 'ns_guest_dhcp', tags=[])
303303

304304
# Setup firewall zones for aliases
305305
for z in alias_zones:

packages/ns-migration/files/scripts/ssh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ if data['authorized_keys']:
2424

2525
if data['ssh_from_wan']:
2626
nsmigration.vprint(f"Allowing SSH access from WAN")
27-
firewall.add_service(u, 'ssh', data['ssh']['Port'], 'tcp')
27+
firewall.add_service(u, 'ssh', data['ssh']['Port'], 'tcp', tags=[])
2828
u.commit("firewall")
2929

3030
# Save configuration

packages/python3-nethsec/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
77

88
PKG_NAME:=python3-nethsec
99
# renovate: datasource=github-tags depName=NethServer/python3-nethsec
10-
PKG_VERSION:=1.4.2
10+
PKG_VERSION:=1.4.3
1111
PKG_RELEASE:=1
1212

1313
PKG_MAINTAINER:=Giacomo Sanchietti <[email protected]>

0 commit comments

Comments
 (0)