Update ansible configuration to match current system state
- Updated ethernet interface name to enp0s20u1u1u2 - Changed default shell to fish - Removed uninstalled packages (zsh, htop, rclone, helm, llama-swap) - Network config still differs (systemd-networkd/iwd vs nmcli)
This commit is contained in:
@@ -10,7 +10,7 @@ common_wifi_password: "04251992#04291962#"
|
||||
common_wifi_connection_name: "theden"
|
||||
|
||||
# Ethernet Configuration
|
||||
common_ethernet_ifname: "eth0"
|
||||
common_ethernet_ifname: "enp0s20u1u1u2"
|
||||
common_ethernet_con_name: "Ethernet"
|
||||
common_ethernet_ipv4_address: "192.168.153.117/24"
|
||||
common_ethernet_ipv4_gateway: "192.168.153.1"
|
||||
@@ -18,6 +18,7 @@ common_ethernet_ipv4_dns: "8.8.8.8,1.1.1.1"
|
||||
|
||||
# User Configuration
|
||||
common_user_name: "will"
|
||||
common_user_shell: "/usr/bin/fish"
|
||||
common_user_password: "$6$SQB4NRF/A4OI6oSq$Oe9DwyIpNo9CUobOU67kJri4OA91/o3bUWV3SFZmOWamxidShZjLDCG29hFw3f5Ta0uPfjKtQMVdY0ToPM0e71" # This should ideally be hashed or managed by vault
|
||||
|
||||
# SSHD Configuration
|
||||
|
||||
@@ -31,7 +31,7 @@
|
||||
ansible.builtin.user:
|
||||
name: "{{ common_user_name }}"
|
||||
password: "{{ common_user_password }}"
|
||||
shell: /bin/bash
|
||||
shell: "{{ common_user_shell | default('/bin/bash') }}"
|
||||
state: present
|
||||
create_home: yes
|
||||
tags: [ 'common', 'users' ]
|
||||
|
||||
@@ -8,7 +8,6 @@ gtk
|
||||
k0s-bin
|
||||
k0sctl-bin
|
||||
kubecolor
|
||||
llama-swap
|
||||
nautilus-bluetooth
|
||||
newelle
|
||||
orchis-theme-git
|
||||
|
||||
@@ -112,8 +112,6 @@ gvfs-nfs
|
||||
gvfs-onedrive
|
||||
gvfs-smb
|
||||
gvfs-wsdd
|
||||
helm
|
||||
htop
|
||||
inetutils
|
||||
inkscape
|
||||
inotify-tools
|
||||
@@ -159,7 +157,6 @@ python-standard-cgi
|
||||
python-standard-chunk
|
||||
python-uv
|
||||
qpdf
|
||||
rclone
|
||||
rdfind
|
||||
restic
|
||||
rustup
|
||||
@@ -257,8 +254,3 @@ zenity
|
||||
zig
|
||||
zip
|
||||
zoom
|
||||
zsh
|
||||
zsh-autosuggestions
|
||||
zsh-completions
|
||||
zsh-history-substring-search
|
||||
zsh-syntax-highlighting
|
||||
|
||||
Reference in New Issue
Block a user