From 9b2d34b3a996eac387d8ead2eff8139a7fc612d7 Mon Sep 17 00:00:00 2001 From: Zoom Date: Tue, 10 Jun 2025 17:03:13 +0300 Subject: [PATCH] Fix typo in `User-Guide_Autoconfig.md` Typo: `armbian-firstlogin` script looks for a `provisioning.sh` with an extension. --- docs/User-Guide_Autoconfig.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/User-Guide_Autoconfig.md b/docs/User-Guide_Autoconfig.md index 412bf296..f01ef118 100644 --- a/docs/User-Guide_Autoconfig.md +++ b/docs/User-Guide_Autoconfig.md @@ -107,16 +107,16 @@ PRESET_USER_SHELL="bash" ## Provisioning script -`/root/provisioning` is executed once as root after the first successful login, either manual or automated. It’s used to perform final system setup tasks like installing packages, configuring the system, or enabling services. +`/root/provisioning.sh` is executed once as root after the first successful login, either manual or automated. It’s used to perform final system setup tasks like installing packages, configuring the system, or enabling services. The example script updates package lists, installs htop, sets a custom hostname. -```bash title="/root/provisioning" +```bash title="/root/provisioning.sh" #!/bin/bash set -e echo "Provisioning started" apt update && apt install -y htop hostnamectl set-hostname my-device echo "Provisioning complete" -``` \ No newline at end of file +```