openvpn: move usr/share/openvpn files into its own dir
authorFlorian Eckert <redacted>
Wed, 4 Mar 2026 10:21:16 +0000 (11:21 +0100)
committerFlorian Eckert <redacted>
Thu, 5 Mar 2026 06:54:01 +0000 (07:54 +0100)
By moving the file to a subdirectory, it is easier to track where the file
is located on the target without having to check the Makefile every time.

Signed-off-by: Florian Eckert <redacted>
12 files changed:
net/openvpn/Makefile
net/openvpn/files/usr/share/openvpn/auth-user-pass-verify.uc [moved from net/openvpn/files/auth-user-pass-verify.uc with 100% similarity]
net/openvpn/files/usr/share/openvpn/client-connect.uc [moved from net/openvpn/files/client-connect.uc with 100% similarity]
net/openvpn/files/usr/share/openvpn/client-crresponse.uc [moved from net/openvpn/files/client-crresponse.uc with 100% similarity]
net/openvpn/files/usr/share/openvpn/client-disconnect.uc [moved from net/openvpn/files/client-disconnect.uc with 100% similarity]
net/openvpn/files/usr/share/openvpn/down.uc [moved from net/openvpn/files/down.uc with 100% similarity]
net/openvpn/files/usr/share/openvpn/ipchange.uc [moved from net/openvpn/files/ipchange.uc with 100% similarity]
net/openvpn/files/usr/share/openvpn/openvpn.options [moved from net/openvpn/files/openvpn.options with 100% similarity]
net/openvpn/files/usr/share/openvpn/route-pre-down.uc [moved from net/openvpn/files/route-pre-down.uc with 100% similarity]
net/openvpn/files/usr/share/openvpn/route-up.uc [moved from net/openvpn/files/route-up.uc with 100% similarity]
net/openvpn/files/usr/share/openvpn/tls-verify.uc [moved from net/openvpn/files/tls-verify.uc with 100% similarity]
net/openvpn/files/usr/share/openvpn/up.uc [moved from net/openvpn/files/up.uc with 100% similarity]

index 1914f12991df122d0590bf3475091df6a4f80f25..6456dfbf5add68a7b31940a18c8d18bec3f7ad62 100644 (file)
@@ -108,19 +108,19 @@ define Package/openvpn-$(BUILD_VARIANT)/install
 
        $(INSTALL_DIR) $(1)/usr/share/openvpn
        $(INSTALL_DATA) \
-               files/openvpn.options \
-               $(1)/usr/share/openvpn/openvpn.options
+               files/usr/share/openvpn/openvpn.options \
+               $(1)/usr/share/openvpn/
        $(INSTALL_BIN) \
-               files/up.uc\
-               files/down.uc \
-               files/route-pre-down.uc \
-               files/route-up.uc \
-               files/ipchange.uc \
-               files/client-connect.uc \
-               files/client-disconnect.uc \
-               files/client-crresponse.uc \
-               files/auth-user-pass-verify.uc \
-               files/tls-verify.uc \
+               files/usr/share/openvpn/up.uc \
+               files/usr/share/openvpn/down.uc \
+               files/usr/share/openvpn/route-pre-down.uc \
+               files/usr/share/openvpn/route-up.uc \
+               files/usr/share/openvpn/ipchange.uc \
+               files/usr/share/openvpn/client-connect.uc \
+               files/usr/share/openvpn/client-disconnect.uc \
+               files/usr/share/openvpn/client-crresponse.uc \
+               files/usr/share/openvpn/auth-user-pass-verify.uc \
+               files/usr/share/openvpn/tls-verify.uc \
                $(1)/usr/share/openvpn/
 
        $(INSTALL_DIR) $(1)/lib/upgrade/keep.d
git clone https://git.99rst.org/PROJECT