Skip to content

Commit 9b2d34b

Browse files
ZoomRmcigorpecovnik
authored andcommitted
Fix typo in User-Guide_Autoconfig.md
Typo: `armbian-firstlogin` script looks for a `provisioning.sh` with an extension.
1 parent bd7a7da commit 9b2d34b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/User-Guide_Autoconfig.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,16 +107,16 @@ PRESET_USER_SHELL="bash"
107107

108108
## Provisioning script
109109

110-
`/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.
110+
`/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.
111111

112112
The example script updates package lists, installs htop, sets a custom hostname.
113113

114114

115-
```bash title="/root/provisioning"
115+
```bash title="/root/provisioning.sh"
116116
#!/bin/bash
117117
set -e
118118
echo "Provisioning started"
119119
apt update && apt install -y htop
120120
hostnamectl set-hostname my-device
121121
echo "Provisioning complete"
122-
```
122+
```

0 commit comments

Comments
 (0)