mirror of
				https://gitlab.sectorq.eu/jaydee/ansible.git
				synced 2025-10-30 18:01:11 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			520 B
		
	
	
	
		
			YAML
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			520 B
		
	
	
	
		
			YAML
		
	
	
		
			Executable File
		
	
	
	
	
| - hosts: datacenter
 | |
|   name: Set  hostname
 | |
|   become: true
 | |
|   tasks:
 | |
|     - name: Modify hostyname
 | |
|       ansible.builtin.hostname: 
 | |
|         name: "{{ inventory_hostname }}"
 | |
|         use: systemd
 | |
|     - name: Print all available facts
 | |
|       ansible.builtin.debug:
 | |
|         var: ansible_facts.architecture
 | |
|     - name: Print all available facts
 | |
|       ansible.builtin.debug:
 | |
|         var: "{{ ansible_distribution }}"
 | |
|     - name: Print all available facts
 | |
|       ansible.builtin.debug:
 | |
|         var: ansible_facts.distribution_version | 
