├── .editorconfig ├── .github ├── ISSUE_TEMPLATE │ ├── bug-reports.yml │ ├── config.yml │ ├── feature-reqests.yml │ └── tasks.yml ├── PULL_REQUEST_TEMPLATE.md ├── dependabot.yml ├── images │ └── common.png ├── labeler.yml ├── labels.yml └── workflows │ ├── clean-workflow-logs.yml │ ├── coding-style.yml │ ├── debian.yml │ ├── docs.yml │ ├── ftp-deploy.yml.hold │ ├── issue-welcome-first-time.yml │ ├── labels-from-yml.yml │ ├── lint.yml │ ├── pr-auto-labeler.yml │ ├── pr-label-on-approved.yml │ ├── pr-review-listener.yml │ ├── stale.yml │ ├── unit-tests.yml │ ├── validate-json.yml │ └── watchdog.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── DOCUMENTATION.md ├── LICENSE ├── README.md ├── bin └── armbian-config ├── debian.conf ├── share ├── applications │ └── configng.desktop └── icons │ └── hicolor │ ├── 128x128 │ ├── configng-tux.png │ └── configng.png │ ├── 16x16 │ ├── configng-tux.png │ └── configng.png │ ├── 256x256 │ ├── configng-tux.png │ └── configng.png │ ├── 32x32 │ ├── configng-tux.png │ └── configng.png │ ├── 64x64 │ ├── configng-tux.png │ └── configng.png │ └── scalable │ ├── configng-cpu.svg │ ├── configng-tux.svg │ └── configng.svg ├── tests ├── CINNAMON01.conf ├── GNOME01.conf ├── I3WM01.conf ├── README.md ├── cockpit.conf ├── duplicati.conf ├── gnome_desktop.conf ├── homeassistant.conf ├── mariadb.conf ├── navidrome.conf ├── netbox.conf ├── omv.conf ├── openhab.conf ├── portainer.conf ├── postgres.conf ├── redis.conf ├── rolling.conf ├── samba.conf ├── stable.conf ├── uptimekuma.conf └── xfce_desktop.conf └── tools ├── README.md ├── config-assemble.sh ├── config-markdown.py ├── include ├── README.md ├── images │ ├── ABU001.png │ ├── ACC001.png │ ├── ADG001.png │ ├── ART001.png │ ├── BAZ001.png │ ├── BNS001.png │ ├── BOOT01.png │ ├── CINNAMON01.png │ ├── CON001.png │ ├── CON001.webp │ ├── CPT001.png │ ├── DAT001.png │ ├── DEL001.png │ ├── DOM001.png │ ├── DOW001.png │ ├── DOW025.png │ ├── DPL001.png │ ├── DTO001.png │ ├── EMB001.png │ ├── EVCC01.png │ ├── FIL001.png │ ├── GHOST1.png │ ├── GHR001.png │ ├── GNOME01.png │ ├── GRA001.png │ ├── GTZ001.png │ ├── HA001.png │ ├── HAB001.png │ ├── HAS001.png │ ├── HEAD01.png │ ├── HPG001.png │ ├── HPS001.png │ ├── IMM001.png │ ├── JEL001.png │ ├── JMS001.png │ ├── KER001.png │ ├── LID001.png │ ├── MAN001.png │ ├── MAN005.png │ ├── MED001.png │ ├── MON005.png │ ├── MYA001.png │ ├── MYSQL1.png │ ├── NAV001.png │ ├── NAX001.png │ ├── NBOX01.png │ ├── NCT001.png │ ├── NET001.png │ ├── NET003.png │ ├── NTD001.png │ ├── OCT001.png │ ├── OMV001.png │ ├── OWC001.png │ ├── PGSQL1.png │ ├── PIH001.png │ ├── POR001.png │ ├── POR001.webp │ ├── PRO001.png │ ├── RAD001.png │ ├── RDR001.png │ ├── REDIS1.png │ ├── RSD001.png │ ├── SABN01.png │ ├── SHELL1.png │ ├── SMB001.png │ ├── SON001.png │ ├── SSH001.png │ ├── STC001.png │ ├── STOR001.png │ ├── STR001.png │ ├── SWAG01.png │ ├── SY018.png │ ├── TRA001.png │ ├── UNAT01.png │ ├── UNB001.png │ ├── UPD001.png │ ├── UPK001.png │ ├── USR001.png │ ├── VNS001.png │ ├── WBM001.png │ ├── WG002.png │ ├── WG003.png │ ├── WG004.png │ ├── WRG001.png │ ├── WTC001.png │ ├── XFCE01.png │ ├── ZFS001.png │ └── ZTR001.png └── markdown │ ├── ABU001-footer.md │ ├── ABU001-header.md │ ├── ACC001-header.md │ ├── ADG001-footer.md │ ├── ADG001-header.md │ ├── ART001-header.md │ ├── BAZ001-footer.md │ ├── BAZ001-header.md │ ├── BNS001-footer.md │ ├── BNS001-header.md │ ├── BOOT01-header.md │ ├── CINNAMON01-footer.md │ ├── CON001-footer.md │ ├── CPT001-footer.md │ ├── CPT001-header.md │ ├── DAT001-footer.md │ ├── DAT001-header.md │ ├── DAT005-footer.md │ ├── DAT005-header.md │ ├── DEL001-footer.md │ ├── DEL001-header.md │ ├── DOM001-header.md │ ├── DOW001-footer.md │ ├── DOW001-header.md │ ├── DOW025-footer.md │ ├── DOW025-header.md │ ├── DPL001-footer.md │ ├── DPL001-header.md │ ├── DTO001-header.md │ ├── EMB001-footer.md │ ├── EMB001-header.md │ ├── EVCC01-footer.md │ ├── EVCC01-header.md │ ├── FIL001-footer.md │ ├── FIL001-header.md │ ├── GHOST1-footer.md │ ├── GHOST1-header.md │ ├── GHR001-footer.md │ ├── GHR001-header.md │ ├── GNOME01-header.md │ ├── GRA001-footer.md │ ├── GRA001-header.md │ ├── HAB001-footer.md │ ├── HAS001-footer.md │ ├── HAS001-header.md │ ├── HEAD01-header.md │ ├── HPG001-footer.md │ ├── HPG001-header.md │ ├── HPS001-header.md │ ├── IMM001-footer.md │ ├── IMM001-header.md │ ├── JEL001-header.md │ ├── JMS001-footer.md │ ├── JMS001-header.md │ ├── KER001-header.md │ ├── KER002-header.md │ ├── LID001-footer.md │ ├── LID001-header.md │ ├── MDS001-footer.md │ ├── MDS001-header.md │ ├── MYSQL1-footer.md │ ├── MYSQL1-header.md │ ├── NAV001-header.md │ ├── NAX001-footer.md │ ├── NAX001-header.md │ ├── NBOX01-footer.md │ ├── NBOX01-header.md │ ├── NCT001-footer.md │ ├── NCT001-header.md │ ├── NEA002-footer.md │ ├── NEA002-header.md │ ├── NETFS01-header.md │ ├── NTD001-header.md │ ├── OCT001-footer.md │ ├── OCT001-header.md │ ├── OMV001-footer.md │ ├── OMV001-header.md │ ├── OWC001-footer.md │ ├── OWC001-header.md │ ├── PGSQL1-footer.md │ ├── PGSQL1-header.md │ ├── PIH001-footer.md │ ├── PIH001-header.md │ ├── POR001-footer.md │ ├── POR001-header.md │ ├── PRO001-footer.md │ ├── PRO001-header.md │ ├── RAD001-footer.md │ ├── RAD001-header.md │ ├── RDR001-footer.md │ ├── RDR001-header.md │ ├── REDIS1-footer.md │ ├── REDIS1-header.md │ ├── ROLLIN-header.md │ ├── ROO001-header.md │ ├── SABN01-footer.md │ ├── SABN01-header.md │ ├── SHELL1-header.md │ ├── SMB001-header.md │ ├── SON001-footer.md │ ├── SON001-header.md │ ├── SSH001-footer.md │ ├── SSH001-header.md │ ├── STABLE-header.md │ ├── STC001-footer.md │ ├── STC001-header.md │ ├── STD001-footer.md │ ├── STD001-header.md │ ├── STO001-header.md │ ├── STR001-footer.md │ ├── STR001-header.md │ ├── SWAG01-header.md │ ├── TRA001-footer.md │ ├── TRA001-header.md │ ├── UNAT01-header.md │ ├── UNB001-footer.md │ ├── UNB001-header.md │ ├── UNS001-header.md │ ├── UPD001-header.md │ ├── UPD007-footer.md │ ├── UPD007-header.md │ ├── UPK001-footer.md │ ├── UPK001-header.md │ ├── USR002-header.md │ ├── VNS001-header.md │ ├── WBM001-footer.md │ ├── WBM001-header.md │ ├── WRG001-footer.md │ ├── WRG001-header.md │ ├── WTC001-header.md │ ├── XFCE01-header.md │ ├── ZFS001-footer.md │ └── ZFS001-header.md ├── json ├── config.help.json ├── config.localisation.json ├── config.network.json ├── config.software.json ├── config.system.json └── config.temp.json ├── modules ├── docs │ └── config.docs.sh ├── functions │ ├── check_desktop.sh │ ├── check_distro_status.sh │ ├── config_interface.sh │ ├── interface_menu.sh │ ├── is_package_manager_running.sh │ ├── module_default.sh │ ├── package.sh │ ├── service.sh │ └── set_runtime_variables.sh ├── initialize │ └── checkpoint.sh ├── network │ ├── check_ip_version.sh │ ├── connect_bt_interface.sh │ ├── default_network_config.sh │ ├── default_wireless_network_config.sh │ ├── module_network_simple.sh │ ├── network_config.sh │ ├── qr_code.sh │ ├── see_ping.sh │ └── toggle_ipv6.sh ├── runtime │ └── config.runtime.sh ├── software │ ├── module_actualbudget.sh │ ├── module_adguardhome.sh │ ├── module_armbianrouter.sh │ ├── module_bazarr.sh │ ├── module_cockpit.sh │ ├── module_deluge.sh │ ├── module_docker.sh │ ├── module_domoticz.sh │ ├── module_duplicati.sh │ ├── module_embyserver.sh │ ├── module_evcc.sh │ ├── module_filebrowser.sh │ ├── module_ghost.sh │ ├── module_grafana.sh │ ├── module_haos.sh │ ├── module_hastebin.sh │ ├── module_homepage.sh │ ├── module_immich.sh │ ├── module_jellyfin.sh │ ├── module_jellyseerr.sh │ ├── module_lidarr.sh │ ├── module_mariadb.sh │ ├── module_medusa.sh │ ├── module_mysql.sh │ ├── module_navidrome.sh │ ├── module_netalertx.sh │ ├── module_netbox.sh │ ├── module_netdata.sh │ ├── module_nextcloud.sh │ ├── module_octoprint.sh │ ├── module_omv.sh │ ├── module_openhab.sh │ ├── module_owncloud.sh │ ├── module_phpmyadmin.sh │ ├── module_pi-hole.sh │ ├── module_plexmediaserver.sh │ ├── module_portainer.sh │ ├── module_postgres.sh │ ├── module_prometheus.sh │ ├── module_prowlarr.sh │ ├── module_qbittorrent.sh │ ├── module_radarr.sh │ ├── module_readarr.sh │ ├── module_redis.sh │ ├── module_sabnzbd.sh │ ├── module_samba.sh │ ├── module_sonarr.sh │ ├── module_stirling.sh │ ├── module_swag.sh │ ├── module_syncthing.sh │ ├── module_transmission.sh │ ├── module_unbound.sh │ ├── module_uptime-kuma.sh │ ├── module_watchtower.sh │ ├── module_webmin.sh │ ├── module_wireguard.sh │ ├── module_zerotier.sh │ └── see_monitoring.sh └── system │ ├── about_armbian_configng.sh │ ├── adjust_motd.sh │ ├── change_system_hostname.sh │ ├── install_headers.sh │ ├── manage_dtoverlays.sh │ ├── manage_odroid_board.sh │ ├── manage_zsh.sh │ ├── module_armbian_firmware.sh │ ├── module_armbian_kvmtest.sh │ ├── module_armbian_rsyncd.sh │ ├── module_armbian_runners.sh │ ├── module_armbian_upgrades.sh │ ├── module_desktop.sh │ ├── module_desktop_packages.sh │ ├── module_generic.sh │ ├── module_nfs.sh │ ├── module_nfsd.sh │ ├── module_overlayfs.sh │ ├── module_sshserver.sh │ ├── module_zfs.sh │ ├── release_upgrade.sh │ ├── restore_netplan_config.sh │ ├── store_netplan_config.sh │ ├── toggle_ssh_lastlog.sh │ └── update_skel.sh ├── repository └── armbian-config.sources └── template └── module_software_template.sh /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-reports.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/ISSUE_TEMPLATE/bug-reports.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- 1 | blank_issues_enabled: false 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-reqests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/ISSUE_TEMPLATE/feature-reqests.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/tasks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/ISSUE_TEMPLATE/tasks.yml -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/images/common.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/images/common.png -------------------------------------------------------------------------------- /.github/labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/labeler.yml -------------------------------------------------------------------------------- /.github/labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/labels.yml -------------------------------------------------------------------------------- /.github/workflows/clean-workflow-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/clean-workflow-logs.yml -------------------------------------------------------------------------------- /.github/workflows/coding-style.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/coding-style.yml -------------------------------------------------------------------------------- /.github/workflows/debian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/debian.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/ftp-deploy.yml.hold: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/ftp-deploy.yml.hold -------------------------------------------------------------------------------- /.github/workflows/issue-welcome-first-time.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/issue-welcome-first-time.yml -------------------------------------------------------------------------------- /.github/workflows/labels-from-yml.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/labels-from-yml.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/pr-auto-labeler.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/pr-auto-labeler.yml -------------------------------------------------------------------------------- /.github/workflows/pr-label-on-approved.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/pr-label-on-approved.yml -------------------------------------------------------------------------------- /.github/workflows/pr-review-listener.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/pr-review-listener.yml -------------------------------------------------------------------------------- /.github/workflows/stale.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/stale.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.github/workflows/validate-json.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/validate-json.yml -------------------------------------------------------------------------------- /.github/workflows/watchdog.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.github/workflows/watchdog.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /DOCUMENTATION.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/DOCUMENTATION.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/README.md -------------------------------------------------------------------------------- /bin/armbian-config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/bin/armbian-config -------------------------------------------------------------------------------- /debian.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/debian.conf -------------------------------------------------------------------------------- /share/applications/configng.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/applications/configng.desktop -------------------------------------------------------------------------------- /share/icons/hicolor/128x128/configng-tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/128x128/configng-tux.png -------------------------------------------------------------------------------- /share/icons/hicolor/128x128/configng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/128x128/configng.png -------------------------------------------------------------------------------- /share/icons/hicolor/16x16/configng-tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/16x16/configng-tux.png -------------------------------------------------------------------------------- /share/icons/hicolor/16x16/configng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/16x16/configng.png -------------------------------------------------------------------------------- /share/icons/hicolor/256x256/configng-tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/256x256/configng-tux.png -------------------------------------------------------------------------------- /share/icons/hicolor/256x256/configng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/256x256/configng.png -------------------------------------------------------------------------------- /share/icons/hicolor/32x32/configng-tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/32x32/configng-tux.png -------------------------------------------------------------------------------- /share/icons/hicolor/32x32/configng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/32x32/configng.png -------------------------------------------------------------------------------- /share/icons/hicolor/64x64/configng-tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/64x64/configng-tux.png -------------------------------------------------------------------------------- /share/icons/hicolor/64x64/configng.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/64x64/configng.png -------------------------------------------------------------------------------- /share/icons/hicolor/scalable/configng-cpu.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/scalable/configng-cpu.svg -------------------------------------------------------------------------------- /share/icons/hicolor/scalable/configng-tux.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/scalable/configng-tux.svg -------------------------------------------------------------------------------- /share/icons/hicolor/scalable/configng.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/share/icons/hicolor/scalable/configng.svg -------------------------------------------------------------------------------- /tests/CINNAMON01.conf: -------------------------------------------------------------------------------- 1 | ENABLED=false 2 | CONDITION="[ -f /usr/share/xsessions/cinnamon.desktop ]" 3 | -------------------------------------------------------------------------------- /tests/GNOME01.conf: -------------------------------------------------------------------------------- 1 | ENABLED=false 2 | CONDITION="[ -f /usr/share/xsessions/gnome.desktop ]" 3 | -------------------------------------------------------------------------------- /tests/I3WM01.conf: -------------------------------------------------------------------------------- 1 | ENABLED=false 2 | CONDITION="[ -f /usr/share/xsessions/i3.desktop ]" 3 | -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/cockpit.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/cockpit.conf -------------------------------------------------------------------------------- /tests/duplicati.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/duplicati.conf -------------------------------------------------------------------------------- /tests/gnome_desktop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/gnome_desktop.conf -------------------------------------------------------------------------------- /tests/homeassistant.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/homeassistant.conf -------------------------------------------------------------------------------- /tests/mariadb.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/mariadb.conf -------------------------------------------------------------------------------- /tests/navidrome.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/navidrome.conf -------------------------------------------------------------------------------- /tests/netbox.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/netbox.conf -------------------------------------------------------------------------------- /tests/omv.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/omv.conf -------------------------------------------------------------------------------- /tests/openhab.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/openhab.conf -------------------------------------------------------------------------------- /tests/portainer.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/portainer.conf -------------------------------------------------------------------------------- /tests/postgres.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/postgres.conf -------------------------------------------------------------------------------- /tests/redis.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/redis.conf -------------------------------------------------------------------------------- /tests/rolling.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/rolling.conf -------------------------------------------------------------------------------- /tests/samba.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/samba.conf -------------------------------------------------------------------------------- /tests/stable.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/stable.conf -------------------------------------------------------------------------------- /tests/uptimekuma.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/uptimekuma.conf -------------------------------------------------------------------------------- /tests/xfce_desktop.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tests/xfce_desktop.conf -------------------------------------------------------------------------------- /tools/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/README.md -------------------------------------------------------------------------------- /tools/config-assemble.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/config-assemble.sh -------------------------------------------------------------------------------- /tools/config-markdown.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/config-markdown.py -------------------------------------------------------------------------------- /tools/include/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/README.md -------------------------------------------------------------------------------- /tools/include/images/ABU001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/ABU001.png -------------------------------------------------------------------------------- /tools/include/images/ACC001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/ACC001.png -------------------------------------------------------------------------------- /tools/include/images/ADG001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/ADG001.png -------------------------------------------------------------------------------- /tools/include/images/ART001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/ART001.png -------------------------------------------------------------------------------- /tools/include/images/BAZ001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/BAZ001.png -------------------------------------------------------------------------------- /tools/include/images/BNS001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/BNS001.png -------------------------------------------------------------------------------- /tools/include/images/BOOT01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/BOOT01.png -------------------------------------------------------------------------------- /tools/include/images/CINNAMON01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/CINNAMON01.png -------------------------------------------------------------------------------- /tools/include/images/CON001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/CON001.png -------------------------------------------------------------------------------- /tools/include/images/CON001.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/CON001.webp -------------------------------------------------------------------------------- /tools/include/images/CPT001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/CPT001.png -------------------------------------------------------------------------------- /tools/include/images/DAT001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/DAT001.png -------------------------------------------------------------------------------- /tools/include/images/DEL001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/DEL001.png -------------------------------------------------------------------------------- /tools/include/images/DOM001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/DOM001.png -------------------------------------------------------------------------------- /tools/include/images/DOW001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/DOW001.png -------------------------------------------------------------------------------- /tools/include/images/DOW025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/DOW025.png -------------------------------------------------------------------------------- /tools/include/images/DPL001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/DPL001.png -------------------------------------------------------------------------------- /tools/include/images/DTO001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/DTO001.png -------------------------------------------------------------------------------- /tools/include/images/EMB001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/EMB001.png -------------------------------------------------------------------------------- /tools/include/images/EVCC01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/EVCC01.png -------------------------------------------------------------------------------- /tools/include/images/FIL001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/FIL001.png -------------------------------------------------------------------------------- /tools/include/images/GHOST1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/GHOST1.png -------------------------------------------------------------------------------- /tools/include/images/GHR001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/GHR001.png -------------------------------------------------------------------------------- /tools/include/images/GNOME01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/GNOME01.png -------------------------------------------------------------------------------- /tools/include/images/GRA001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/GRA001.png -------------------------------------------------------------------------------- /tools/include/images/GTZ001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/GTZ001.png -------------------------------------------------------------------------------- /tools/include/images/HA001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/HA001.png -------------------------------------------------------------------------------- /tools/include/images/HAB001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/HAB001.png -------------------------------------------------------------------------------- /tools/include/images/HAS001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/HAS001.png -------------------------------------------------------------------------------- /tools/include/images/HEAD01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/HEAD01.png -------------------------------------------------------------------------------- /tools/include/images/HPG001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/HPG001.png -------------------------------------------------------------------------------- /tools/include/images/HPS001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/HPS001.png -------------------------------------------------------------------------------- /tools/include/images/IMM001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/IMM001.png -------------------------------------------------------------------------------- /tools/include/images/JEL001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/JEL001.png -------------------------------------------------------------------------------- /tools/include/images/JMS001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/JMS001.png -------------------------------------------------------------------------------- /tools/include/images/KER001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/KER001.png -------------------------------------------------------------------------------- /tools/include/images/LID001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/LID001.png -------------------------------------------------------------------------------- /tools/include/images/MAN001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/MAN001.png -------------------------------------------------------------------------------- /tools/include/images/MAN005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/MAN005.png -------------------------------------------------------------------------------- /tools/include/images/MED001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/MED001.png -------------------------------------------------------------------------------- /tools/include/images/MON005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/MON005.png -------------------------------------------------------------------------------- /tools/include/images/MYA001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/MYA001.png -------------------------------------------------------------------------------- /tools/include/images/MYSQL1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/MYSQL1.png -------------------------------------------------------------------------------- /tools/include/images/NAV001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/NAV001.png -------------------------------------------------------------------------------- /tools/include/images/NAX001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/NAX001.png -------------------------------------------------------------------------------- /tools/include/images/NBOX01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/NBOX01.png -------------------------------------------------------------------------------- /tools/include/images/NCT001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/NCT001.png -------------------------------------------------------------------------------- /tools/include/images/NET001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/NET001.png -------------------------------------------------------------------------------- /tools/include/images/NET003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/NET003.png -------------------------------------------------------------------------------- /tools/include/images/NTD001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/NTD001.png -------------------------------------------------------------------------------- /tools/include/images/OCT001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/OCT001.png -------------------------------------------------------------------------------- /tools/include/images/OMV001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/OMV001.png -------------------------------------------------------------------------------- /tools/include/images/OWC001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/OWC001.png -------------------------------------------------------------------------------- /tools/include/images/PGSQL1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/PGSQL1.png -------------------------------------------------------------------------------- /tools/include/images/PIH001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/PIH001.png -------------------------------------------------------------------------------- /tools/include/images/POR001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/POR001.png -------------------------------------------------------------------------------- /tools/include/images/POR001.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/POR001.webp -------------------------------------------------------------------------------- /tools/include/images/PRO001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/PRO001.png -------------------------------------------------------------------------------- /tools/include/images/RAD001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/RAD001.png -------------------------------------------------------------------------------- /tools/include/images/RDR001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/RDR001.png -------------------------------------------------------------------------------- /tools/include/images/REDIS1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/REDIS1.png -------------------------------------------------------------------------------- /tools/include/images/RSD001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/RSD001.png -------------------------------------------------------------------------------- /tools/include/images/SABN01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/SABN01.png -------------------------------------------------------------------------------- /tools/include/images/SHELL1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/SHELL1.png -------------------------------------------------------------------------------- /tools/include/images/SMB001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/SMB001.png -------------------------------------------------------------------------------- /tools/include/images/SON001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/SON001.png -------------------------------------------------------------------------------- /tools/include/images/SSH001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/SSH001.png -------------------------------------------------------------------------------- /tools/include/images/STC001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/STC001.png -------------------------------------------------------------------------------- /tools/include/images/STOR001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/STOR001.png -------------------------------------------------------------------------------- /tools/include/images/STR001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/STR001.png -------------------------------------------------------------------------------- /tools/include/images/SWAG01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/SWAG01.png -------------------------------------------------------------------------------- /tools/include/images/SY018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/SY018.png -------------------------------------------------------------------------------- /tools/include/images/TRA001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/TRA001.png -------------------------------------------------------------------------------- /tools/include/images/UNAT01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/UNAT01.png -------------------------------------------------------------------------------- /tools/include/images/UNB001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/UNB001.png -------------------------------------------------------------------------------- /tools/include/images/UPD001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/UPD001.png -------------------------------------------------------------------------------- /tools/include/images/UPK001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/UPK001.png -------------------------------------------------------------------------------- /tools/include/images/USR001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/USR001.png -------------------------------------------------------------------------------- /tools/include/images/VNS001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/VNS001.png -------------------------------------------------------------------------------- /tools/include/images/WBM001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/WBM001.png -------------------------------------------------------------------------------- /tools/include/images/WG002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/WG002.png -------------------------------------------------------------------------------- /tools/include/images/WG003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/WG003.png -------------------------------------------------------------------------------- /tools/include/images/WG004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/WG004.png -------------------------------------------------------------------------------- /tools/include/images/WRG001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/WRG001.png -------------------------------------------------------------------------------- /tools/include/images/WTC001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/WTC001.png -------------------------------------------------------------------------------- /tools/include/images/XFCE01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/XFCE01.png -------------------------------------------------------------------------------- /tools/include/images/ZFS001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/ZFS001.png -------------------------------------------------------------------------------- /tools/include/images/ZTR001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/images/ZTR001.png -------------------------------------------------------------------------------- /tools/include/markdown/ABU001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/ABU001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/ABU001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/ABU001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/ACC001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/ACC001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/ADG001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/ADG001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/ADG001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/ADG001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/ART001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/ART001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/BAZ001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/BAZ001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/BAZ001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/BAZ001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/BNS001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/BNS001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/BNS001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/BNS001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/BOOT01-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/BOOT01-header.md -------------------------------------------------------------------------------- /tools/include/markdown/CINNAMON01-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/CINNAMON01-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/CON001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/CON001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/CPT001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/CPT001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/CPT001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/CPT001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/DAT001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DAT001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/DAT001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DAT001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/DAT005-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DAT005-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/DAT005-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DAT005-header.md -------------------------------------------------------------------------------- /tools/include/markdown/DEL001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DEL001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/DEL001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DEL001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/DOM001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DOM001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/DOW001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DOW001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/DOW001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DOW001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/DOW025-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DOW025-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/DOW025-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DOW025-header.md -------------------------------------------------------------------------------- /tools/include/markdown/DPL001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DPL001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/DPL001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DPL001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/DTO001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/DTO001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/EMB001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/EMB001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/EMB001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/EMB001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/EVCC01-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/EVCC01-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/EVCC01-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/EVCC01-header.md -------------------------------------------------------------------------------- /tools/include/markdown/FIL001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/FIL001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/FIL001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/FIL001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/GHOST1-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/GHOST1-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/GHOST1-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/GHOST1-header.md -------------------------------------------------------------------------------- /tools/include/markdown/GHR001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/GHR001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/GHR001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/GHR001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/GNOME01-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/GNOME01-header.md -------------------------------------------------------------------------------- /tools/include/markdown/GRA001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/GRA001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/GRA001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/GRA001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/HAB001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/HAB001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/HAS001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/HAS001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/HAS001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/HAS001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/HEAD01-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/HEAD01-header.md -------------------------------------------------------------------------------- /tools/include/markdown/HPG001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/HPG001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/HPG001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/HPG001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/HPS001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/HPS001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/IMM001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/IMM001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/IMM001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/IMM001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/JEL001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/JEL001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/JMS001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/JMS001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/JMS001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/JMS001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/KER001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/KER001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/KER002-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/KER002-header.md -------------------------------------------------------------------------------- /tools/include/markdown/LID001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/LID001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/LID001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/LID001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/MDS001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/MDS001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/MDS001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/MDS001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/MYSQL1-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/MYSQL1-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/MYSQL1-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/MYSQL1-header.md -------------------------------------------------------------------------------- /tools/include/markdown/NAV001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/NAV001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/NAX001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/NAX001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/NAX001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/NAX001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/NBOX01-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/NBOX01-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/NBOX01-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/NBOX01-header.md -------------------------------------------------------------------------------- /tools/include/markdown/NCT001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/NCT001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/NCT001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/NCT001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/NEA002-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/NEA002-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/NEA002-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/NEA002-header.md -------------------------------------------------------------------------------- /tools/include/markdown/NETFS01-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/NETFS01-header.md -------------------------------------------------------------------------------- /tools/include/markdown/NTD001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/NTD001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/OCT001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/OCT001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/OCT001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/OCT001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/OMV001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/OMV001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/OMV001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/OMV001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/OWC001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/OWC001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/OWC001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/OWC001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/PGSQL1-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/PGSQL1-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/PGSQL1-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/PGSQL1-header.md -------------------------------------------------------------------------------- /tools/include/markdown/PIH001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/PIH001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/PIH001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/PIH001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/POR001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/POR001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/POR001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/POR001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/PRO001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/PRO001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/PRO001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/PRO001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/RAD001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/RAD001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/RAD001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/RAD001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/RDR001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/RDR001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/RDR001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/RDR001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/REDIS1-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/REDIS1-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/REDIS1-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/REDIS1-header.md -------------------------------------------------------------------------------- /tools/include/markdown/ROLLIN-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/ROLLIN-header.md -------------------------------------------------------------------------------- /tools/include/markdown/ROO001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/ROO001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/SABN01-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/SABN01-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/SABN01-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/SABN01-header.md -------------------------------------------------------------------------------- /tools/include/markdown/SHELL1-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/SHELL1-header.md -------------------------------------------------------------------------------- /tools/include/markdown/SMB001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/SMB001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/SON001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/SON001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/SON001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/SON001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/SSH001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/SSH001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/SSH001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/SSH001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/STABLE-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/STABLE-header.md -------------------------------------------------------------------------------- /tools/include/markdown/STC001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/STC001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/STC001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/STC001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/STD001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/STD001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/STD001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/STD001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/STO001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/STO001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/STR001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/STR001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/STR001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/STR001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/SWAG01-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/SWAG01-header.md -------------------------------------------------------------------------------- /tools/include/markdown/TRA001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/TRA001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/TRA001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/TRA001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/UNAT01-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/UNAT01-header.md -------------------------------------------------------------------------------- /tools/include/markdown/UNB001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/UNB001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/UNB001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/UNB001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/UNS001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/UNS001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/UPD001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/UPD001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/UPD007-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/UPD007-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/UPD007-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/UPD007-header.md -------------------------------------------------------------------------------- /tools/include/markdown/UPK001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/UPK001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/UPK001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/UPK001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/USR002-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/USR002-header.md -------------------------------------------------------------------------------- /tools/include/markdown/VNS001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/VNS001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/WBM001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/WBM001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/WBM001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/WBM001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/WRG001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/WRG001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/WRG001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/WRG001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/WTC001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/WTC001-header.md -------------------------------------------------------------------------------- /tools/include/markdown/XFCE01-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/XFCE01-header.md -------------------------------------------------------------------------------- /tools/include/markdown/ZFS001-footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/ZFS001-footer.md -------------------------------------------------------------------------------- /tools/include/markdown/ZFS001-header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/include/markdown/ZFS001-header.md -------------------------------------------------------------------------------- /tools/json/config.help.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/json/config.help.json -------------------------------------------------------------------------------- /tools/json/config.localisation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/json/config.localisation.json -------------------------------------------------------------------------------- /tools/json/config.network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/json/config.network.json -------------------------------------------------------------------------------- /tools/json/config.software.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/json/config.software.json -------------------------------------------------------------------------------- /tools/json/config.system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/json/config.system.json -------------------------------------------------------------------------------- /tools/json/config.temp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/json/config.temp.json -------------------------------------------------------------------------------- /tools/modules/docs/config.docs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/docs/config.docs.sh -------------------------------------------------------------------------------- /tools/modules/functions/check_desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/functions/check_desktop.sh -------------------------------------------------------------------------------- /tools/modules/functions/check_distro_status.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/functions/check_distro_status.sh -------------------------------------------------------------------------------- /tools/modules/functions/config_interface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/functions/config_interface.sh -------------------------------------------------------------------------------- /tools/modules/functions/interface_menu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/functions/interface_menu.sh -------------------------------------------------------------------------------- /tools/modules/functions/is_package_manager_running.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/functions/is_package_manager_running.sh -------------------------------------------------------------------------------- /tools/modules/functions/module_default.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/functions/module_default.sh -------------------------------------------------------------------------------- /tools/modules/functions/package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/functions/package.sh -------------------------------------------------------------------------------- /tools/modules/functions/service.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/functions/service.sh -------------------------------------------------------------------------------- /tools/modules/functions/set_runtime_variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/functions/set_runtime_variables.sh -------------------------------------------------------------------------------- /tools/modules/initialize/checkpoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/initialize/checkpoint.sh -------------------------------------------------------------------------------- /tools/modules/network/check_ip_version.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/network/check_ip_version.sh -------------------------------------------------------------------------------- /tools/modules/network/connect_bt_interface.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/network/connect_bt_interface.sh -------------------------------------------------------------------------------- /tools/modules/network/default_network_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/network/default_network_config.sh -------------------------------------------------------------------------------- /tools/modules/network/default_wireless_network_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/network/default_wireless_network_config.sh -------------------------------------------------------------------------------- /tools/modules/network/module_network_simple.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/network/module_network_simple.sh -------------------------------------------------------------------------------- /tools/modules/network/network_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/network/network_config.sh -------------------------------------------------------------------------------- /tools/modules/network/qr_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/network/qr_code.sh -------------------------------------------------------------------------------- /tools/modules/network/see_ping.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/network/see_ping.sh -------------------------------------------------------------------------------- /tools/modules/network/toggle_ipv6.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/network/toggle_ipv6.sh -------------------------------------------------------------------------------- /tools/modules/runtime/config.runtime.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/runtime/config.runtime.sh -------------------------------------------------------------------------------- /tools/modules/software/module_actualbudget.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_actualbudget.sh -------------------------------------------------------------------------------- /tools/modules/software/module_adguardhome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_adguardhome.sh -------------------------------------------------------------------------------- /tools/modules/software/module_armbianrouter.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_armbianrouter.sh -------------------------------------------------------------------------------- /tools/modules/software/module_bazarr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_bazarr.sh -------------------------------------------------------------------------------- /tools/modules/software/module_cockpit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_cockpit.sh -------------------------------------------------------------------------------- /tools/modules/software/module_deluge.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_deluge.sh -------------------------------------------------------------------------------- /tools/modules/software/module_docker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_docker.sh -------------------------------------------------------------------------------- /tools/modules/software/module_domoticz.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_domoticz.sh -------------------------------------------------------------------------------- /tools/modules/software/module_duplicati.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_duplicati.sh -------------------------------------------------------------------------------- /tools/modules/software/module_embyserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_embyserver.sh -------------------------------------------------------------------------------- /tools/modules/software/module_evcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_evcc.sh -------------------------------------------------------------------------------- /tools/modules/software/module_filebrowser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_filebrowser.sh -------------------------------------------------------------------------------- /tools/modules/software/module_ghost.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_ghost.sh -------------------------------------------------------------------------------- /tools/modules/software/module_grafana.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_grafana.sh -------------------------------------------------------------------------------- /tools/modules/software/module_haos.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_haos.sh -------------------------------------------------------------------------------- /tools/modules/software/module_hastebin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_hastebin.sh -------------------------------------------------------------------------------- /tools/modules/software/module_homepage.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_homepage.sh -------------------------------------------------------------------------------- /tools/modules/software/module_immich.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_immich.sh -------------------------------------------------------------------------------- /tools/modules/software/module_jellyfin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_jellyfin.sh -------------------------------------------------------------------------------- /tools/modules/software/module_jellyseerr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_jellyseerr.sh -------------------------------------------------------------------------------- /tools/modules/software/module_lidarr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_lidarr.sh -------------------------------------------------------------------------------- /tools/modules/software/module_mariadb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_mariadb.sh -------------------------------------------------------------------------------- /tools/modules/software/module_medusa.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_medusa.sh -------------------------------------------------------------------------------- /tools/modules/software/module_mysql.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_mysql.sh -------------------------------------------------------------------------------- /tools/modules/software/module_navidrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_navidrome.sh -------------------------------------------------------------------------------- /tools/modules/software/module_netalertx.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_netalertx.sh -------------------------------------------------------------------------------- /tools/modules/software/module_netbox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_netbox.sh -------------------------------------------------------------------------------- /tools/modules/software/module_netdata.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_netdata.sh -------------------------------------------------------------------------------- /tools/modules/software/module_nextcloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_nextcloud.sh -------------------------------------------------------------------------------- /tools/modules/software/module_octoprint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_octoprint.sh -------------------------------------------------------------------------------- /tools/modules/software/module_omv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_omv.sh -------------------------------------------------------------------------------- /tools/modules/software/module_openhab.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_openhab.sh -------------------------------------------------------------------------------- /tools/modules/software/module_owncloud.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_owncloud.sh -------------------------------------------------------------------------------- /tools/modules/software/module_phpmyadmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_phpmyadmin.sh -------------------------------------------------------------------------------- /tools/modules/software/module_pi-hole.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_pi-hole.sh -------------------------------------------------------------------------------- /tools/modules/software/module_plexmediaserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_plexmediaserver.sh -------------------------------------------------------------------------------- /tools/modules/software/module_portainer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_portainer.sh -------------------------------------------------------------------------------- /tools/modules/software/module_postgres.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_postgres.sh -------------------------------------------------------------------------------- /tools/modules/software/module_prometheus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_prometheus.sh -------------------------------------------------------------------------------- /tools/modules/software/module_prowlarr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_prowlarr.sh -------------------------------------------------------------------------------- /tools/modules/software/module_qbittorrent.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_qbittorrent.sh -------------------------------------------------------------------------------- /tools/modules/software/module_radarr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_radarr.sh -------------------------------------------------------------------------------- /tools/modules/software/module_readarr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_readarr.sh -------------------------------------------------------------------------------- /tools/modules/software/module_redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_redis.sh -------------------------------------------------------------------------------- /tools/modules/software/module_sabnzbd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_sabnzbd.sh -------------------------------------------------------------------------------- /tools/modules/software/module_samba.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_samba.sh -------------------------------------------------------------------------------- /tools/modules/software/module_sonarr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_sonarr.sh -------------------------------------------------------------------------------- /tools/modules/software/module_stirling.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_stirling.sh -------------------------------------------------------------------------------- /tools/modules/software/module_swag.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_swag.sh -------------------------------------------------------------------------------- /tools/modules/software/module_syncthing.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_syncthing.sh -------------------------------------------------------------------------------- /tools/modules/software/module_transmission.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_transmission.sh -------------------------------------------------------------------------------- /tools/modules/software/module_unbound.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_unbound.sh -------------------------------------------------------------------------------- /tools/modules/software/module_uptime-kuma.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_uptime-kuma.sh -------------------------------------------------------------------------------- /tools/modules/software/module_watchtower.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_watchtower.sh -------------------------------------------------------------------------------- /tools/modules/software/module_webmin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_webmin.sh -------------------------------------------------------------------------------- /tools/modules/software/module_wireguard.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_wireguard.sh -------------------------------------------------------------------------------- /tools/modules/software/module_zerotier.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/module_zerotier.sh -------------------------------------------------------------------------------- /tools/modules/software/see_monitoring.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/software/see_monitoring.sh -------------------------------------------------------------------------------- /tools/modules/system/about_armbian_configng.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/about_armbian_configng.sh -------------------------------------------------------------------------------- /tools/modules/system/adjust_motd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/adjust_motd.sh -------------------------------------------------------------------------------- /tools/modules/system/change_system_hostname.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/change_system_hostname.sh -------------------------------------------------------------------------------- /tools/modules/system/install_headers.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/install_headers.sh -------------------------------------------------------------------------------- /tools/modules/system/manage_dtoverlays.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/manage_dtoverlays.sh -------------------------------------------------------------------------------- /tools/modules/system/manage_odroid_board.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/manage_odroid_board.sh -------------------------------------------------------------------------------- /tools/modules/system/manage_zsh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/manage_zsh.sh -------------------------------------------------------------------------------- /tools/modules/system/module_armbian_firmware.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_armbian_firmware.sh -------------------------------------------------------------------------------- /tools/modules/system/module_armbian_kvmtest.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_armbian_kvmtest.sh -------------------------------------------------------------------------------- /tools/modules/system/module_armbian_rsyncd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_armbian_rsyncd.sh -------------------------------------------------------------------------------- /tools/modules/system/module_armbian_runners.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_armbian_runners.sh -------------------------------------------------------------------------------- /tools/modules/system/module_armbian_upgrades.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_armbian_upgrades.sh -------------------------------------------------------------------------------- /tools/modules/system/module_desktop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_desktop.sh -------------------------------------------------------------------------------- /tools/modules/system/module_desktop_packages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_desktop_packages.sh -------------------------------------------------------------------------------- /tools/modules/system/module_generic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_generic.sh -------------------------------------------------------------------------------- /tools/modules/system/module_nfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_nfs.sh -------------------------------------------------------------------------------- /tools/modules/system/module_nfsd.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_nfsd.sh -------------------------------------------------------------------------------- /tools/modules/system/module_overlayfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_overlayfs.sh -------------------------------------------------------------------------------- /tools/modules/system/module_sshserver.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_sshserver.sh -------------------------------------------------------------------------------- /tools/modules/system/module_zfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/module_zfs.sh -------------------------------------------------------------------------------- /tools/modules/system/release_upgrade.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/release_upgrade.sh -------------------------------------------------------------------------------- /tools/modules/system/restore_netplan_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/restore_netplan_config.sh -------------------------------------------------------------------------------- /tools/modules/system/store_netplan_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/store_netplan_config.sh -------------------------------------------------------------------------------- /tools/modules/system/toggle_ssh_lastlog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/toggle_ssh_lastlog.sh -------------------------------------------------------------------------------- /tools/modules/system/update_skel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/modules/system/update_skel.sh -------------------------------------------------------------------------------- /tools/repository/armbian-config.sources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/repository/armbian-config.sources -------------------------------------------------------------------------------- /tools/template/module_software_template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/armbian/configng/HEAD/tools/template/module_software_template.sh --------------------------------------------------------------------------------