UncleNUC Wiki

Second chance for NUCs

User Tools

Site Tools


lab:ansible_virtualbox_autoboot_linux:customize_user-data_for_ubuntu_unattended_install

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
lab:ansible_virtualbox_autoboot_linux:customize_user-data_for_ubuntu_unattended_install [2024/01/17 23:09] – updated userlab:ansible_virtualbox_autoboot_linux:customize_user-data_for_ubuntu_unattended_install [2024/05/10 05:15] (current) – removed user
Line 1: Line 1:
-====== Customize user-data for Ubuntu Unattended Install ====== 
-A custom "user-data" file is required for an unattended installation of Ubuntu. We will create this template file for use in our Ansible playbook to [[Generate Custom Unattended Ubuntu Install ISO]]. 
  
-FIXME The file below is in development 
- 
-<file yaml user-data.j2> 
-#cloud-config 
-autoinstall: 
-  version: 1 
-  ssh: 
-    install-server: true 
-    # option "allow-pw" defaults to `true` if authorized_keys is empty, `false` otherwise. 
-    allow-pw: false 
-  storage: 
-    layout: 
-      name: lvm 
-      match: 
-        size: largest 
-  user-data: 
-    diable_root: true 
-    timezone: America/New_York 
-    package_upgrade: true 
-    packages: 
-    - network-manager 
-    - lldpd 
-    - git 
-    - python3-pip 
-    - ansible 
-    - arp-scan 
-    users: 
-      - name: {{ Global.username }} 
-        primary_group: users 
-        groups: sudo 
-        lock_passwd: true 
-        # passwd: "$5$IWwNqL9VUSDoc4Jv$DEUGR.cZQcbz/QvdCOmU13fX5ZW0rANg8LqkAtX3nBA" # changeme 
-        shell: /bin/bash 
-        ssh_authorized_keys: 
-          - "{{ Global.ssh_key }}" 
-        sudo: ALL=(ALL) NOPASSWD:ALL 
-  ansible: 
-    install_method: pip 
-    package_name: ansible 
-    #run_user: ansible 
-    galaxy: 
-      actions: 
-        - ["ansible-galaxy", "collection", "install", "community.general"] 
-  late-commands: 
-    # randomly generate the hostname & show the IP at boot 
-    - echo "{{ Global.system_name_prefix }}-$(openssl rand -hex 3)" > /target/etc/hostname 
-    # dump the IP out at login screen 
-    - echo "Ubuntu 22.04 LTS \nIP - $(hostname -I)\n" > /target/etc/issue 
-</file> 
- 
-NEXT: [[generate_custom_unattended_ubuntu_install_iso]] 
- 
-PREVIOUS: [[install_oracle_virtualbox_using_ansible]] 
lab/ansible_virtualbox_autoboot_linux/customize_user-data_for_ubuntu_unattended_install.1705532958.txt.gz · Last modified: 2024/01/17 23:09 by user