Sync
This commit is contained in:
parent
368a8a9208
commit
578b0eacee
0
.gitignore
vendored
Normal file → Executable file
0
.gitignore
vendored
Normal file → Executable file
0
dnaclab_linux/ad1.dnaclab.net.crt
Normal file → Executable file
0
dnaclab_linux/ad1.dnaclab.net.crt
Normal file → Executable file
0
dnaclab_linux/get_logs.yml
Normal file → Executable file
0
dnaclab_linux/get_logs.yml
Normal file → Executable file
0
dnaclab_linux/global_vars/main.yml
Normal file → Executable file
0
dnaclab_linux/global_vars/main.yml
Normal file → Executable file
0
dnaclab_linux/inventory.yml
Normal file → Executable file
0
dnaclab_linux/inventory.yml
Normal file → Executable file
0
dnaclab_linux/prestage_backup.yml
Normal file → Executable file
0
dnaclab_linux/prestage_backup.yml
Normal file → Executable file
0
dnaclab_linux/prestage_ncafsa_vm_template.yml
Normal file → Executable file
0
dnaclab_linux/prestage_ncafsa_vm_template.yml
Normal file → Executable file
0
dnaclab_linux/prestage_root_ca.yaml
Normal file → Executable file
0
dnaclab_linux/prestage_root_ca.yaml
Normal file → Executable file
0
dnaclab_linux/prestage_services.yml
Normal file → Executable file
0
dnaclab_linux/prestage_services.yml
Normal file → Executable file
0
dnaclab_linux/prestage_update_dns.yaml
Normal file → Executable file
0
dnaclab_linux/prestage_update_dns.yaml
Normal file → Executable file
0
dnaclab_linux/prestage_users.yaml
Normal file → Executable file
0
dnaclab_linux/prestage_users.yaml
Normal file → Executable file
0
dnaclab_linux/reboot.yml
Normal file → Executable file
0
dnaclab_linux/reboot.yml
Normal file → Executable file
0
dnaclab_linux/roles/common/tasks/main.yml
Normal file → Executable file
0
dnaclab_linux/roles/common/tasks/main.yml
Normal file → Executable file
0
dnaclab_linux/roles/common/vars/main.yml
Normal file → Executable file
0
dnaclab_linux/roles/common/vars/main.yml
Normal file → Executable file
0
dnaclab_linux/roles/ncafsa-backup/tasks/main.yaml
Normal file → Executable file
0
dnaclab_linux/roles/ncafsa-backup/tasks/main.yaml
Normal file → Executable file
0
dnaclab_linux/roles/ncafsa-backup/templates/sftp.conf.j2
Normal file → Executable file
0
dnaclab_linux/roles/ncafsa-backup/templates/sftp.conf.j2
Normal file → Executable file
0
dnaclab_linux/roles/ncafsa-backup/vars/main.yaml
Normal file → Executable file
0
dnaclab_linux/roles/ncafsa-backup/vars/main.yaml
Normal file → Executable file
0
dnaclab_linux/roles/ncafsa-users/vars/main.yaml
Normal file → Executable file
0
dnaclab_linux/roles/ncafsa-users/vars/main.yaml
Normal file → Executable file
0
dnaclab_linux/roles/ncafsa-vm-template/tasks/main.yaml
Normal file → Executable file
0
dnaclab_linux/roles/ncafsa-vm-template/tasks/main.yaml
Normal file → Executable file
0
dnaclab_linux/roles/services/files/ntp.conf
Normal file → Executable file
0
dnaclab_linux/roles/services/files/ntp.conf
Normal file → Executable file
0
dnaclab_linux/roles/services/files/syslog-ng-network-devices.conf
Normal file → Executable file
0
dnaclab_linux/roles/services/files/syslog-ng-network-devices.conf
Normal file → Executable file
0
dnaclab_linux/roles/services/files/tftpd-hpa
Normal file → Executable file
0
dnaclab_linux/roles/services/files/tftpd-hpa
Normal file → Executable file
0
dnaclab_linux/roles/services/files/vsftpd.conf
Normal file → Executable file
0
dnaclab_linux/roles/services/files/vsftpd.conf
Normal file → Executable file
0
dnaclab_linux/roles/services/tasks/main.yml
Normal file → Executable file
0
dnaclab_linux/roles/services/tasks/main.yml
Normal file → Executable file
0
dnaclab_linux/testing_version_operations.yaml
Normal file → Executable file
0
dnaclab_linux/testing_version_operations.yaml
Normal file → Executable file
0
dnaclab_linux/update.yml
Normal file → Executable file
0
dnaclab_linux/update.yml
Normal file → Executable file
0
home_linux/config_files/status.sh
Normal file → Executable file
0
home_linux/config_files/status.sh
Normal file → Executable file
0
home_linux/get_facts.yml
Normal file → Executable file
0
home_linux/get_facts.yml
Normal file → Executable file
0
home_linux/get_logs.yml
Normal file → Executable file
0
home_linux/get_logs.yml
Normal file → Executable file
0
home_linux/get_status.yml
Normal file → Executable file
0
home_linux/get_status.yml
Normal file → Executable file
0
home_linux/home_inventory.yml
Normal file → Executable file
0
home_linux/home_inventory.yml
Normal file → Executable file
0
home_linux/install_docker.yml
Normal file → Executable file
0
home_linux/install_docker.yml
Normal file → Executable file
29
home_linux/install_network_manager.yaml
Normal file
29
home_linux/install_network_manager.yaml
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
---
|
||||||
|
- name: Install the Network Manager service on the Raspberries
|
||||||
|
hosts: kubernetes
|
||||||
|
roles:
|
||||||
|
- common
|
||||||
|
become: yes
|
||||||
|
gather_facts: no
|
||||||
|
|
||||||
|
tasks:
|
||||||
|
|
||||||
|
- name: Install the Network Manager package
|
||||||
|
ansible.builtin.apt:
|
||||||
|
name: network-manager
|
||||||
|
state: present
|
||||||
|
update_cache: yes
|
||||||
|
|
||||||
|
- name: Enable and start the Network Manager service
|
||||||
|
ansible.builtin.service:
|
||||||
|
name: NetworkManager
|
||||||
|
state: started
|
||||||
|
enabled: yes
|
||||||
|
|
||||||
|
- name: Test that the Network Manager service is running
|
||||||
|
ansible.builtin.shell: nmcli g
|
||||||
|
register: nmcli_status
|
||||||
|
|
||||||
|
- name: Print test results
|
||||||
|
ansible.builtin.debug:
|
||||||
|
var: nmcli_status["stdout_lines"]
|
||||||
0
home_linux/install_nfs_client.yml
Normal file → Executable file
0
home_linux/install_nfs_client.yml
Normal file → Executable file
0
home_linux/install_nfs_server.yml
Normal file → Executable file
0
home_linux/install_nfs_server.yml
Normal file → Executable file
0
home_linux/k3s_stuff/install_k3s.yml
Normal file → Executable file
0
home_linux/k3s_stuff/install_k3s.yml
Normal file → Executable file
0
home_linux/k3s_stuff/remove_k3s.yml
Normal file → Executable file
0
home_linux/k3s_stuff/remove_k3s.yml
Normal file → Executable file
0
home_linux/k3s_stuff/set_hosts_file_for_k3s.yml
Normal file → Executable file
0
home_linux/k3s_stuff/set_hosts_file_for_k3s.yml
Normal file → Executable file
0
home_linux/k8s_stuff/disable_swap.yml
Normal file → Executable file
0
home_linux/k8s_stuff/disable_swap.yml
Normal file → Executable file
0
home_linux/k8s_stuff/install_microk8s.yml
Normal file → Executable file
0
home_linux/k8s_stuff/install_microk8s.yml
Normal file → Executable file
0
home_linux/k8s_stuff/remove_microk8s.yml
Normal file → Executable file
0
home_linux/k8s_stuff/remove_microk8s.yml
Normal file → Executable file
0
home_linux/reboot.yml
Normal file → Executable file
0
home_linux/reboot.yml
Normal file → Executable file
0
home_linux/roles/common/vars/main.yml
Normal file → Executable file
0
home_linux/roles/common/vars/main.yml
Normal file → Executable file
0
home_linux/shutdown.yml
Normal file → Executable file
0
home_linux/shutdown.yml
Normal file → Executable file
0
home_linux/update_apt.yml
Normal file → Executable file
0
home_linux/update_apt.yml
Normal file → Executable file
0
ios_devices/.vscode/settings.json
vendored
Normal file → Executable file
0
ios_devices/.vscode/settings.json
vendored
Normal file → Executable file
0
ios_devices/baguley_inventory.yml
Normal file → Executable file
0
ios_devices/baguley_inventory.yml
Normal file → Executable file
0
ios_devices/device_audit.yml
Normal file → Executable file
0
ios_devices/device_audit.yml
Normal file → Executable file
0
ios_devices/device_backup.yml
Normal file → Executable file
0
ios_devices/device_backup.yml
Normal file → Executable file
0
ios_devices/device_provisioning.yml
Normal file → Executable file
0
ios_devices/device_provisioning.yml
Normal file → Executable file
0
ios_devices/inventory.yml
Normal file → Executable file
0
ios_devices/inventory.yml
Normal file → Executable file
0
ios_devices/remove_user.yml
Normal file → Executable file
0
ios_devices/remove_user.yml
Normal file → Executable file
0
ios_devices/roles/common/vars/main.yml
Normal file → Executable file
0
ios_devices/roles/common/vars/main.yml
Normal file → Executable file
0
kubernetes/inventory.yml
Normal file → Executable file
0
kubernetes/inventory.yml
Normal file → Executable file
0
kubernetes/reboot.yml
Normal file → Executable file
0
kubernetes/reboot.yml
Normal file → Executable file
0
kubernetes/roles/common/tasks/main.yml
Normal file → Executable file
0
kubernetes/roles/common/tasks/main.yml
Normal file → Executable file
0
kubernetes/roles/common/vars/main.yml
Normal file → Executable file
0
kubernetes/roles/common/vars/main.yml
Normal file → Executable file
0
kubernetes/shutdown_k8s.yml
Normal file → Executable file
0
kubernetes/shutdown_k8s.yml
Normal file → Executable file
0
team-requests/kav-prefix-list/artifacts/prefix_list_audit.yml
Normal file → Executable file
0
team-requests/kav-prefix-list/artifacts/prefix_list_audit.yml
Normal file → Executable file
0
team-requests/kav-prefix-list/artifacts/prefix_list_update_workaround.yml
Normal file → Executable file
0
team-requests/kav-prefix-list/artifacts/prefix_list_update_workaround.yml
Normal file → Executable file
0
team-requests/kav-prefix-list/artifacts/route_map_audit.yml
Normal file → Executable file
0
team-requests/kav-prefix-list/artifacts/route_map_audit.yml
Normal file → Executable file
0
team-requests/kav-prefix-list/pl_inventory.yml
Normal file → Executable file
0
team-requests/kav-prefix-list/pl_inventory.yml
Normal file → Executable file
0
team-requests/kav-prefix-list/prefix_list.csv
Normal file → Executable file
0
team-requests/kav-prefix-list/prefix_list.csv
Normal file → Executable file
0
team-requests/kav-prefix-list/prefix_list_update.yml
Normal file → Executable file
0
team-requests/kav-prefix-list/prefix_list_update.yml
Normal file → Executable file
0
team-requests/kav-prefix-list/roles/common/vars/main.yml
Normal file → Executable file
0
team-requests/kav-prefix-list/roles/common/vars/main.yml
Normal file → Executable file
0
testing/inner.yml
Normal file → Executable file
0
testing/inner.yml
Normal file → Executable file
0
testing/variable-test.yml
Normal file → Executable file
0
testing/variable-test.yml
Normal file → Executable file
0
vmware/get_vcenter_information.yml
Normal file → Executable file
0
vmware/get_vcenter_information.yml
Normal file → Executable file
0
vmware/lab_inventory.yml
Normal file → Executable file
0
vmware/lab_inventory.yml
Normal file → Executable file
0
vmware/roles/common/vars/main.yml
Normal file → Executable file
0
vmware/roles/common/vars/main.yml
Normal file → Executable file
Loading…
Reference in New Issue
Block a user