From d133676f2851e187f07ef377b5cc59f9f1804c67 Mon Sep 17 00:00:00 2001 From: Jeremy Lecour Date: Mon, 19 Jun 2017 23:59:40 +0200 Subject: [PATCH] tabs -> spaces --- reveal/sysadmin.html | 74 ++++++++++++++++++++++---------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/reveal/sysadmin.html b/reveal/sysadmin.html index 4253881..bedc812 100644 --- a/reveal/sysadmin.html +++ b/reveal/sysadmin.html @@ -52,18 +52,18 @@
-

Les fichiers de cron

-
-  		
+    

Les fichiers de cron

+
+      
         # systemctl status cron
       
       
         # vim /etc/crontab
         # vim /etc/default/cron
-  		
-  	
-
-  	
+      
+    
+
+    
       # vim /etc/cron.d/example
     
 30 05 * * 0 www-data /usr/local/adm/savelog-weekly
@@ -72,7 +72,7 @@
 
   
-    	

Éditer une table

+

Éditer une table

$ crontab -e @@ -93,7 +93,7 @@ MAILTO=alert@example.com
-    	

Documentation et consultation

+

Documentation et consultation

$ man 5 crontab @@ -561,7 +561,7 @@ ansible 2.2.1.0 $ ansible localhost --module-name setup --args "filter=ansible_mem*" $ ansible localhost --module-name lineinfile --args \ "dest=/etc/hosts regexp=example.com line='192.168.0.25 example.com'" -
+

Éléments de base

@@ -608,41 +608,41 @@ ansible 2.2.1.0

-				inventory/
-				├── group_vars
-				│   ├── all.yml
-				│   ├── hypervisors.yml
-				│   └── proxies.yml
-				├── hosts
-				├── hosts-dev
-				└── host_vars
-				    ├── stack01-data01.yml
-				    ├── stack01-front01-web01.yml
-				    └── stack01-front01.yml
-		
+ inventory/ + ├── group_vars + │ ├── all.yml + │ ├── hypervisors.yml + │ └── proxies.yml + ├── hosts + ├── hosts-dev + └── host_vars + ├── stack01-data01.yml + ├── stack01-front01-web01.yml + └── stack01-front01.yml +

-				kvm01 ansible_host=192.168.2.1
-				kvm02 ansible_host=192.168.2.2
+        kvm01 ansible_host=192.168.2.1
+        kvm02 ansible_host=192.168.2.2
 
-				stack01-front01 ansible_host=192.168.2.1 ansible_port=22020
-				stack01-front01-web01 ansible_host=192.168.2.1 ansible_port=22101
-				stack01-data01 ansible_host=192.168.2.1 ansible_port=22010
+        stack01-front01 ansible_host=192.168.2.1 ansible_port=22020
+        stack01-front01-web01 ansible_host=192.168.2.1 ansible_port=22101
+        stack01-data01 ansible_host=192.168.2.1 ansible_port=22010
 
-				[hypervisors]
-				kvm01
-				kvm02
+        [hypervisors]
+        kvm01
+        kvm02
 
-				[fronts]
-				stack01-front01
+        [fronts]
+        stack01-front01
 
-				[dbs]
-				stack01-data01
+        [dbs]
+        stack01-data01
 
-				[web]
-				stack01-front01-web01
-		
+ [web] + stack01-front01-web01 +

Variables