Advertisement
wagnermarques

Install Minimal Xfce4 in xorg for alpine linux standard distro

Jan 17th, 2023 (edited)
1,084
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 0.53 KB | Source Code | 0 0
  1. ---
  2. #from chatGPT
  3. - hosts: all
  4.   become: true
  5.   vars:
  6.     apk_packages:
  7.      - xfce4
  8.       - lightdm
  9.       - lightdm-gtk-greeter
  10.       - dbus-x11
  11.       - xfce4-terminal
  12.   tasks:
  13.   - name: Update system
  14.     apk:
  15.       update_cache: yes
  16.   - name: Install packages
  17.     apk:
  18.       name: "{{ apk_packages }}"
  19.       state: present
  20.   - name: Enable LightDM
  21.     service:
  22.       name: lightdm
  23.       state: started
  24.       enabled: yes
  25.   - name: Enable dbus
  26.     service:
  27.       name: dbus
  28.       state: started
  29.       enabled: yes
  30.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement