<message>Modify the first-boot.sh script to include an additional step for managing screen brightness during the provisioning process. Update user-data.bootstrap to improve DNS configuration by ensuring NetworkManager manages /etc/resolv.conf correctly, and remove obsolete scripts related to systemd-resolved. Enhance documentation to reflect these changes and clarify the setup process for users, improving overall network boot functionality and user experience.
19 lines
438 B
Desktop File
19 lines
438 B
Desktop File
[Unit]
|
|
Description=Local API for screen brightness override (crew manual control)
|
|
Documentation=file:///usr/local/share/doc/screen-brightness/SCREEN-BRIGHTNESS-MANUAL-SETUP.md
|
|
After=network.target
|
|
Before=lightdm.service
|
|
|
|
[Service]
|
|
Type=simple
|
|
ExecStart=/usr/local/bin/brightness-api.py
|
|
Restart=on-failure
|
|
RestartSec=3
|
|
User=root
|
|
# Listen on 127.0.0.1 only
|
|
StandardOutput=journal
|
|
StandardError=journal
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|