Claude 7921c959ff Add smart user detection and selection for kiosk client install
Added intelligent user selection that scans /home directory and
presents available users, making it much easier to install the
kiosk client for the correct user account.

Features:
1. Smart User Detection
   - Scans /etc/passwd for real users (UID >= 1000)
   - Excludes system accounts (nologin, /bin/false)
   - Shows username, UID, and home directory
   - Presents numbered list of available users

2. Intelligent Defaults
   - Auto-suggests SUDO_USER if available
   - Falls back to first detected user
   - Highlights suggested choice as default

3. Manual Override
   - Option to manually enter username
   - Validates entered username exists
   - Shows confirmation with UID

4. Improved User Experience
   - install_client_only(): Uses new select_user function
   - configure_local_client(): Shows current user, offers to change
   - Clear feedback on user selection
   - Proper error handling for invalid selections

5. Verified Ownership
   All user configs are properly owned by selected user:
   - ~/.baresip/config (chown in configure_baresip:1879)
   - ~/.baresip/accounts (chown in configure_baresip:1879)
   - ~/.config/systemd/user/* (chown in enable_client_services:1962)
   - ~/.config/wireplumber/* (chown in configure_audio_ducking:1067)
   - All PipeWire/audio operations run as selected user

Example Flow:
  $ sudo ./easy-asterisk-interactive-v1.28.sh
  > Install Client Only

  Scanning for users...

    1) kiosk (UID: 1000, Home: /home/kiosk)
    2) admin (UID: 1001, Home: /home/admin)
    3) Enter username manually

  Select user [1]: 1
  ✓ Selected user: kiosk (UID: 1000)

This makes it much easier to install on kiosk systems where you
might not remember the exact username, and ensures all configs
are created with proper ownership from the start.
2025-12-03 18:35:57 +00:00
2025-11-28 18:28:24 -05:00
S
Description
Mirror of outis1one/easy-asterisk from GitHub
GPL-3.0
408 KiB
Languages
Shell 98.9%
Dockerfile 1.1%