<feed xmlns='http://www.w3.org/2005/Atom'>
<title>packages/net/wg-installer/Makefile, branch master</title>
<subtitle>Mirror of packages feed</subtitle>
<id>https://git.openwrt.org/feed/packages/atom?h=master</id>
<link rel='self' href='https://git.openwrt.org/feed/packages/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/'/>
<updated>2023-04-21T20:46:58Z</updated>
<entry>
<title>treewide: remove AUTORELEASE</title>
<updated>2023-04-21T20:46:58Z</updated>
<author>
<name>Paul Fertser</name>
</author>
<published>2023-04-21T16:32:27Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=0c10c224be81f9221dabfab449855ab6718d2a0c'/>
<id>urn:sha1:0c10c224be81f9221dabfab449855ab6718d2a0c</id>
<content type='text'>
Automatically compute and substitute current values for all
$(AUTORELEASE) instances as this feature is deprecated and shouldn't be
used.

The following temporary change was made to the core:

diff --git a/rules.mk b/rules.mk
index 57d7995d4fa8..f16367de87a8 100644
--- a/rules.mk
+++ b/rules.mk
@@ -429,7 +429,7 @@ endef
 abi_version_str = $(subst -,,$(subst _,,$(subst .,,$(1))))

 COMMITCOUNT = $(if $(DUMP),0,$(call commitcount))
-AUTORELEASE = $(if $(DUMP),0,$(call commitcount,1))
+AUTORELEASE = $(if $(DUMP),0,$(shell sed -i "s/\$$(AUTORELEASE)/$(call commitcount,1)/" $(CURDIR)/Makefile))

 all:
 FORCE: ;

And this command used to fix affected packages:

for i in $(cd feeds/packages; git grep -l PKG_RELEASE:=.*AUTORELEASE | \
                              sed 's^.*/\([^/]*\)/Makefile^\1^';);
do
  make package/$i/download
done

Signed-off-by: Paul Fertser &lt;fercerpav@gmail.com&gt;
</content>
</entry>
<entry>
<title>wg-installer: use babeld add_interface function</title>
<updated>2022-02-01T21:32:30Z</updated>
<author>
<name>Nick Hainke</name>
</author>
<published>2022-02-01T20:56:23Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=40b87aac950db3e310b6a353392a7ecd66e7c6f2'/>
<id>urn:sha1:40b87aac950db3e310b6a353392a7ecd66e7c6f2</id>
<content type='text'>
With commit 385200443554 ("babeld: add add_interface function") babeld
has a new ubus function allowing to dynamically add an interface.

Before the add_interface function, we were required to reload babeld.
The reload influenced the babeld routing. However, the remove part is
still missing and will be added at a later stage.

Signed-off-by: Nick Hainke &lt;vincent@systemli.org&gt;
</content>
</entry>
<entry>
<title>wg-installer: remove unused dependency</title>
<updated>2022-01-20T14:56:02Z</updated>
<author>
<name>Nick Hainke</name>
</author>
<published>2022-01-20T14:24:05Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=fab86eb626b677f8329482f427c6837e59fe4597'/>
<id>urn:sha1:fab86eb626b677f8329482f427c6837e59fe4597</id>
<content type='text'>
Remove the dependency "coreutils-realpath" from
wg-installer-server-hotplug-olsrd.

Signed-off-by: Nick Hainke &lt;vincent@systemli.org&gt;
</content>
</entry>
<entry>
<title>wg-installer: create wireguard key if it does not exist</title>
<updated>2022-01-20T13:44:26Z</updated>
<author>
<name>Nick Hainke</name>
</author>
<published>2022-01-20T13:10:12Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=324fa79d7c8a90e899a81bbb3ae0c5a5a602f88e'/>
<id>urn:sha1:324fa79d7c8a90e899a81bbb3ae0c5a5a602f88e</id>
<content type='text'>
Check if the key exists which is given by
    option wg_key '/etc/wgserver/wg.key'

Signed-off-by: Nick Hainke &lt;vincent@systemli.org&gt;
</content>
</entry>
<entry>
<title>wg-installer: install cronjob</title>
<updated>2022-01-20T08:51:05Z</updated>
<author>
<name>Nick Hainke</name>
</author>
<published>2022-01-20T08:06:24Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=432a965689f09c6bb86cd24753f79d739b9bcf46'/>
<id>urn:sha1:432a965689f09c6bb86cd24753f79d739b9bcf46</id>
<content type='text'>
Install a cronjob that removes unused wireguard interfaces every 10
minutes.

Signed-off-by: Nick Hainke &lt;vincent@systemli.org&gt;
</content>
</entry>
<entry>
<title>wg-installer: fix using symlinks for conf files</title>
<updated>2022-01-10T23:27:43Z</updated>
<author>
<name>Nick Hainke</name>
</author>
<published>2022-01-10T22:56:36Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=5e8301d7dc154b27b03dc2c24c111e41bb897293'/>
<id>urn:sha1:5e8301d7dc154b27b03dc2c24c111e41bb897293</id>
<content type='text'>
It is useful to symlink babeld and olsrd to /tmp/ if we frequently
write to those config files.

Signed-off-by: Nick Hainke &lt;vincent@systemli.org&gt;
</content>
</entry>
<entry>
<title>wg-installer: add hotplug script for olsr</title>
<updated>2022-01-06T21:24:08Z</updated>
<author>
<name>Nick Hainke</name>
</author>
<published>2022-01-06T21:03:18Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=d35c22951bfabb9b34133471fe1e389909d2007b'/>
<id>urn:sha1:d35c22951bfabb9b34133471fe1e389909d2007b</id>
<content type='text'>
Add hotplug-olsrd to automatically mesh with olsrd via new wireguard
links.

Signed-off-by: Nick Hainke &lt;vincent@systemli.org&gt;
</content>
</entry>
<entry>
<title>treewide: add missing conffiles</title>
<updated>2021-10-28T06:18:42Z</updated>
<author>
<name>Huangbin Zhan</name>
</author>
<published>2021-10-24T10:31:27Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=94d57346fc7ce534d874e8155f9ec5cd51071fa6'/>
<id>urn:sha1:94d57346fc7ce534d874e8155f9ec5cd51071fa6</id>
<content type='text'>
Signed-off-by: Huangbin Zhan &lt;zhanhb88@gmail.com&gt;
</content>
</entry>
<entry>
<title>wg-installer: fix dependencies</title>
<updated>2021-09-07T06:49:41Z</updated>
<author>
<name>Nick Hainke</name>
</author>
<published>2021-09-06T12:05:12Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=62cc627aba9b9aa1ac7b54ac5471b6f97e3f4ba3'/>
<id>urn:sha1:62cc627aba9b9aa1ac7b54ac5471b6f97e3f4ba3</id>
<content type='text'>
Signed-off-by: Nick Hainke &lt;vincent@systemli.org&gt;
</content>
</entry>
<entry>
<title>wg-installer: add babeld hotplug.d script</title>
<updated>2021-02-08T10:38:36Z</updated>
<author>
<name>Nick Hainke</name>
</author>
<published>2021-02-07T19:47:59Z</published>
<link rel='alternate' type='text/html' href='https://git.openwrt.org/feed/packages/commit/?id=3ebc568f18c2c5b9f73dbbdbf12f58ca885a00fd'/>
<id>urn:sha1:3ebc568f18c2c5b9f73dbbdbf12f58ca885a00fd</id>
<content type='text'>
Add a hotplug.d-extension that automatically configures babeld for
meshing via wireguard interfaces.

It checks for "add" and "remove" of a wireguard interface with name
"wg_*". Depending on the action, it removes it from the babeld config
or adds the interface and reloads babeld.

Signed-off-by: Nick Hainke &lt;vincent@systemli.org&gt;
</content>
</entry>
</feed>
