From 7cb0298abcae61dcad4e2f674e6a28e6f56ab62f Mon Sep 17 00:00:00 2001
From: Blieque Mariguan
@@ -15,19 +15,19 @@
- **Lightweight**: Minimal dependencies for optimal performance.
- **Flexible**: Supports JSON, TUI, CLI, and API interfaces.
- **Modern**: A fresh approach to configuration.
-- **Low entropy**: Byte clean uninstall for most targets
+- **Low entropy**: Byte clean uninstall for most targets.
## Features
- **System Configuration**:
- - kernel manamenent, headers, hardware tweaks.
+ - Kernel management, headers, hardware tweaks.
- NFS and ZFS storage management.
- SSH user access tweaks.
- - system updates, rolling / stable, containers update.
+ - System updates, rolling / stable, containers update.
- **Network Management**:
- - fixed / dynamic IP configuration.
- - connecting to wireless network.
- - access point management.
+ - Fixed / dynamic IP configuration.
+ - Connecting to wireless network.
+ - Access point management.
- **Localization Settings**:
- Configure time zone.
- Set language and locales.
@@ -61,9 +61,13 @@ Add Armbian key + repository and install the tool:
```bash
wget -qO - https://apt.armbian.com/armbian.key | gpg --dearmor | \
sudo tee /usr/share/keyrings/armbian.gpg > /dev/null
-echo "deb [signed-by=/usr/share/keyrings/armbian.gpg] \
-https://github.armbian.com/configng stable main" | \
-sudo tee /etc/apt/sources.list.d/armbian-config.list > /dev/null
+cat << EOF | sudo tee /etc/apt/sources.list.d/armbian-config.sources > /dev/null
+Types: deb
+URIs: https://github.armbian.com/configng
+Suites: stable
+Components: main
+Signed-By: /usr/share/keyrings/armbian.gpg
+EOF
sudo apt update
sudo apt -y install armbian-config
```
diff --git a/debian.conf b/debian.conf
index 5d09b11b..565693cd 100644
--- a/debian.conf
+++ b/debian.conf
@@ -1,4 +1,4 @@
lib:/usr/
bin:/usr/
share:/usr/
-tools/repository/armbian-config.list:/etc/apt/sources.list.d/
+tools/repository/armbian-config.sources:/etc/apt/sources.list.d/
diff --git a/tools/repository/armbian-config.list b/tools/repository/armbian-config.list
deleted file mode 100644
index eb01b105..00000000
--- a/tools/repository/armbian-config.list
+++ /dev/null
@@ -1 +0,0 @@
-deb [signed-by=/usr/share/keyrings/armbian.gpg] https://github.armbian.com/configng stable main
diff --git a/tools/repository/armbian-config.sources b/tools/repository/armbian-config.sources
new file mode 100644
index 00000000..32d0b34c
--- /dev/null
+++ b/tools/repository/armbian-config.sources
@@ -0,0 +1,5 @@
+Types: deb
+URIs: https://github.armbian.com/configng
+Suites: stable
+Components: main
+Signed-By: /usr/share/keyrings/armbian.gpg