diff --git a/scripts/apache-config.yml b/scripts/apache-config.yml
index dbdd174927106f926c4e594ea478b1237ff2ef1d..7860361e171d2a167b3d52a30a13f6861af201f5 100644
--- a/scripts/apache-config.yml
+++ b/scripts/apache-config.yml
@@ -1,3 +1,5 @@
+---
+
 description: Quickly configure Apache
 cli:
   options:
@@ -5,7 +7,7 @@ cli:
       default: apache
       help: The application to configure Apache for, e.g. apache, drupal, matomo, nextcloud, kibana
     site:
-      default: False
+      default: no
       help: The id of a site (only useful with certain applications like Drupal or Matomo)
 arguments:
   playbook: role
diff --git a/scripts/apt-pin.yml b/scripts/apt-pin.yml
index c4a50979ba2a4470ccc38ec0b7dde9c0fcdf5379..286feb649d5586f5d7bc2a8b72766b3f33ac4b8f 100644
--- a/scripts/apt-pin.yml
+++ b/scripts/apt-pin.yml
@@ -1,3 +1,5 @@
+---
+
 description: Pin, unpin or show status of packages
 cli:
   arguments:
@@ -11,7 +13,7 @@ cli:
       help: Name of the package
   options:
     version:
-      default: *
+      default: '*'
       help: Version for which you want to pin
 arguments:
   playbook: apt-pin
diff --git a/scripts/bigfiles.yml b/scripts/bigfiles.yml
index fc1caec4efe09a3073831c0eb1b901b5b215e41e..aba7cd8d0a29a996829106c27fbf3d4e69b24f21 100644
--- a/scripts/bigfiles.yml
+++ b/scripts/bigfiles.yml
@@ -1,3 +1,5 @@
+---
+
 description: Find big files / directories
 cli:
   options:
diff --git a/scripts/composer-app-update.yml b/scripts/composer-app-update.yml
index b840054e198285e34abd9cdc7a3244b48e26eb27..dfa86aa0ca72625c5af378e8203327013e0942a2 100644
--- a/scripts/composer-app-update.yml
+++ b/scripts/composer-app-update.yml
@@ -1,3 +1,5 @@
+---
+
 description: Update Composer applications
 cli:
   defaults:
diff --git a/scripts/composer-update.yml b/scripts/composer-update.yml
index 26c766a20f80baad66ff244d60e6a5177479594c..81941f31915707f222e7604adee51db47809471a 100644
--- a/scripts/composer-update.yml
+++ b/scripts/composer-update.yml
@@ -1,3 +1,5 @@
+---
+
 description: Update Composer itself and global packages
 cli:
   defaults:
diff --git a/scripts/connectivity.yml b/scripts/connectivity.yml
index 6aa0ce9c37215efc288450e3a35a7a7736025510..fb0a88b5c21020937f3d105163eb9c571c74e1b9 100644
--- a/scripts/connectivity.yml
+++ b/scripts/connectivity.yml
@@ -1,8 +1,10 @@
+---
+
 description: Update hosts and ssh config
 cli:
   defaults:
     limit: all
-    include_local: True
+    include_local: yes
 arguments:
   playbook: role
 command:
diff --git a/scripts/cronjobs.yml b/scripts/cronjobs.yml
index 92d749e21057fd158f3aedd93f1e52660449c1a8..4d2fa3029a0e181dd5d4d734cd4a97d63e2f53d8 100644
--- a/scripts/cronjobs.yml
+++ b/scripts/cronjobs.yml
@@ -1,3 +1,5 @@
+---
+
 description: Update Cron Jobs
 arguments:
   playbook: farm
diff --git a/scripts/custom.yml b/scripts/custom.yml
index a950238d4dec6ab27d8850ef34a061e939c935bc..ee0300d78d43abd0267a686158b623ec3d381ce0 100644
--- a/scripts/custom.yml
+++ b/scripts/custom.yml
@@ -1,7 +1,9 @@
+---
+
 description: Run a custom playbook from the inventory
 cli:
   arguments:
     playbook:
       help: Name of the playbook
 arguments:
-  custom: True
+  custom: yes
diff --git a/scripts/drupal-config.yml b/scripts/drupal-config.yml
index ba9fa52620f69756c7a26ce332317674bac3d795..cd00070e117addf5f8774ad3c3b6f795c8fe9fb0 100644
--- a/scripts/drupal-config.yml
+++ b/scripts/drupal-config.yml
@@ -1,16 +1,18 @@
+---
+
 description: Quickly configure Drupal sites
 cli:
   arguments:
     limit:
-      default: False
+      default: no
       help: The hostname on which to re-reploy Drupal
     site:
-      default: False
+      default: no
       help: The id of a site
   options:
     quick:
       action: store_true
-      default: False
+      default: no
       help: Only Drupal itself, not the CLI or JailKit
 arguments:
   playbook: role
diff --git a/scripts/drupal-deploy.yml b/scripts/drupal-deploy.yml
index 0e215bdda410ff75c86302a4b14b668b71ea5a99..a0558a321ce474480838f020e73b0712bdc76ce4 100644
--- a/scripts/drupal-deploy.yml
+++ b/scripts/drupal-deploy.yml
@@ -1,11 +1,13 @@
+---
+
 description: Quickly re-deploy a Drupal site
 cli:
   arguments:
     host:
-      default: False
+      default: no
       help: The hostname on which to re-reploy Drupal
     site:
-      default: False
+      default: no
       help: The id of a site
 arguments:
   playbook: role
diff --git a/scripts/drupal-dump-db.yml b/scripts/drupal-dump-db.yml
index 85c6c1527021a3424f38c621b63a7526b9dfaad9..91d3ee1a61f01da9e94ee893280a83b15429eedf 100644
--- a/scripts/drupal-dump-db.yml
+++ b/scripts/drupal-dump-db.yml
@@ -1,14 +1,16 @@
+---
+
 description: Dump and download Drupal database
 cli:
   arguments:
     host:
-      default: False
+      default: no
       help: The hostname of the Drupal site
     site:
-      default: False
+      default: no
       help: The id of a site
     dumpfilename:
-      default: False
+      default: no
       help: The filename of the downloaded dump file
 arguments:
   playbook: role
diff --git a/scripts/drupal-launch.yml b/scripts/drupal-launch.yml
index d48b2db9b384441e6c6dd1b415c300410bccdc25..4400626ff749bea59718390a610d981c64011359 100644
--- a/scripts/drupal-launch.yml
+++ b/scripts/drupal-launch.yml
@@ -1,11 +1,13 @@
+---
+
 description: Launch a Drupal site by creating certs, configure HaProxy, Apache and Drupal
 cli:
   arguments:
     host:
-      default: False
+      default: no
       help: The hostname on which to launch Drupal
     site:
-      default: False
+      default: no
       help: The id of a site
   defaults:
     limit: proxyserver
diff --git a/scripts/drush-aliases.yml b/scripts/drush-aliases.yml
index c2d9c73531eb52ac84dc9fb8a50a5734ab31be94..50c4610bd9bdf2fc60859b250e77960a6e234bde 100644
--- a/scripts/drush-aliases.yml
+++ b/scripts/drush-aliases.yml
@@ -1,12 +1,14 @@
+---
+
 description: Retrieve and adjust Drush aliases from remote host(s)
 cli:
   options:
     site:
-      default: False
+      default: no
       help: The id of a site if only one of the defined sites should be updated
     fetch:
       action: store_true
-      default: False
+      default: no
       help: Only fetch the latest version of the alias definitions
   defaults:
     limit: webserver_drupal
diff --git a/scripts/elastalert-rules.yml b/scripts/elastalert-rules.yml
index 135d5ba04f48acc4405cf7ae88090c7cd3927b99..c84653ad4315b8d2815f07184ce401c62b8c2e28 100644
--- a/scripts/elastalert-rules.yml
+++ b/scripts/elastalert-rules.yml
@@ -1,3 +1,5 @@
+---
+
 description: Update ElastAlert rules
 cli:
   defaults:
diff --git a/scripts/elastalert.yml b/scripts/elastalert.yml
index 16f109a52cd45a828d90bbc38b3b67fad615323e..e80fbcc3994426c516abba1eccee66bc2c93e22e 100644
--- a/scripts/elastalert.yml
+++ b/scripts/elastalert.yml
@@ -1,3 +1,5 @@
+---
+
 description: Update ElastAlert application
 cli:
   defaults:
diff --git a/scripts/fail2ban-config.yml b/scripts/fail2ban-config.yml
index a7f4bb6ec2812f321c313ef0f4820b0a698731d0..75371d5aa7fa5a91ab352b6989096fda14e80273 100644
--- a/scripts/fail2ban-config.yml
+++ b/scripts/fail2ban-config.yml
@@ -1,3 +1,5 @@
+---
+
 description: Configure Fail2Ban
 arguments:
   playbook: role
diff --git a/scripts/fail2ban.yml b/scripts/fail2ban.yml
index 61ebd54e5bfe0fd3a0c8e594e3bc59344a52d41c..4942bfbd577eda9cba11c151bce953b19c3fecf1 100644
--- a/scripts/fail2ban.yml
+++ b/scripts/fail2ban.yml
@@ -1,3 +1,5 @@
+---
+
 description: Configure Fail2Ban
 arguments:
   playbook: role
diff --git a/scripts/farm.yml b/scripts/farm.yml
index 9f633c75e80ff4c46f00a1340d4eaf434b7bbcf4..2bf94a903bb0a59e90cf99e4a2748b14ab207122 100644
--- a/scripts/farm.yml
+++ b/scripts/farm.yml
@@ -1,3 +1,5 @@
+---
+
 description: Run the farm playbook
 arguments:
   playbook: farm
diff --git a/scripts/firewall-config.yml b/scripts/firewall-config.yml
index 7ca9c23478c5bd34255607eb59e7218fcd261b06..703acd99f39e2ec905f59652d9f8500f5df60efe 100644
--- a/scripts/firewall-config.yml
+++ b/scripts/firewall-config.yml
@@ -1,3 +1,5 @@
+---
+
 description: Rebuild Firewall Configuration
 arguments:
   playbook: role
diff --git a/scripts/firewall-unprotect.yml b/scripts/firewall-unprotect.yml
index ffef02f506327abfc293b85763d710a381b51197..d23a314895ad07685ca2794583f43fb0218ab487 100644
--- a/scripts/firewall-unprotect.yml
+++ b/scripts/firewall-unprotect.yml
@@ -1,8 +1,10 @@
+---
+
 description: Switch Firewall to unprotected mode for a period of time
 cli:
   options:
     unprotect-period:
-      default: False
+      default: no
       help: Number of minutes before the firewall goes into protected mode again
 arguments:
   playbook: firewall
diff --git a/scripts/fluentd-client.yml b/scripts/fluentd-client.yml
index b79851ffbdb55f1dbe1442f8cd9bac8aa0d65810..f6c21ef12ba85deb7d7fb4ff79d4c7ffd498372a 100644
--- a/scripts/fluentd-client.yml
+++ b/scripts/fluentd-client.yml
@@ -1,3 +1,5 @@
+---
+
 description: Configure FluentD / td-agent Client
 arguments:
   playbook: role
diff --git a/scripts/fluentd.yml b/scripts/fluentd.yml
index 94704f97ed8b61e2acb2b603d51b550d98d11478..89819d0eb08bb92341353799b6278c6878cde09a 100644
--- a/scripts/fluentd.yml
+++ b/scripts/fluentd.yml
@@ -1,3 +1,5 @@
+---
+
 description: Configure FluentD / td-agent
 arguments:
   playbook: role
diff --git a/scripts/haproxy-blacklists.yml b/scripts/haproxy-blacklists.yml
index 78931bd800a4085fe97b936aef2c6cc963080fdd..8cbbc664d40a0961060723ce4d64f4bd3db20d80 100644
--- a/scripts/haproxy-blacklists.yml
+++ b/scripts/haproxy-blacklists.yml
@@ -1,3 +1,5 @@
+---
+
 description: Quickly update blacklists for HaProxy
 cli:
   defaults:
diff --git a/scripts/haproxy-certs.yml b/scripts/haproxy-certs.yml
index 4021ec903a55d2e3d291b66d97e3b6ef25bd0cc2..882727334e37c65e87d60f8d9b575488fcf0577f 100644
--- a/scripts/haproxy-certs.yml
+++ b/scripts/haproxy-certs.yml
@@ -1,3 +1,5 @@
+---
+
 description: Build SSL Certs for HaProxy
 cli:
   defaults:
diff --git a/scripts/haproxy-config.yml b/scripts/haproxy-config.yml
index 9b83a941eaf8b8369565e489fea125c14c6f0ddc..8b5fbf255d1afeb8da19db8c1d631e41a167d7f1 100644
--- a/scripts/haproxy-config.yml
+++ b/scripts/haproxy-config.yml
@@ -1,3 +1,5 @@
+---
+
 description: Quickly configure HaProxy
 cli:
   defaults:
diff --git a/scripts/hosts.yml b/scripts/hosts.yml
index d0d64bbb53ae14cafdf750ce778dbe8fd9b37036..5b2eeec10a85c6e43ae3d1da59c5e4ec45ccbf7a 100644
--- a/scripts/hosts.yml
+++ b/scripts/hosts.yml
@@ -1,3 +1,5 @@
+---
+
 description: Locally update host information for all inventories
 arguments:
   playbook: hosts
diff --git a/scripts/inithost.yml b/scripts/inithost.yml
index 3395aeb61a027ff6fe4f1f2cad7e289580f736a7..90cdc1eb8d404d79e93e74d993a4bb405a386484 100644
--- a/scripts/inithost.yml
+++ b/scripts/inithost.yml
@@ -1,3 +1,5 @@
+---
+
 description: Initially setup a new host
 cli:
   arguments:
@@ -39,7 +41,7 @@ cli:
           help: The ip address of the host, only required if not installed in the cloud
 arguments:
   playbook: inithost
-  no_gui: True
+  no_gui: yes
 command:
   - name: extra-vars
     value: host=%s inituser=%s firstuser=%s
@@ -74,14 +76,14 @@ command:
       - key
   - name: ask-pass
     condition: key
-    negate: True
+    negate: yes
   - name: extra-vars
     condition: key
-    negate: True
+    negate: yes
     value: initauth="-o PasswordAuthentication=yes -o PubkeyAuthentication=no"
 environment:
   ANSIBLE_SSH_ARGS: -o IdentitiesOnly=yes -o ControlMaster=no -o ControlPersist=60s
-  ANSIBLE_SSH_PIPELINING: False
+  ANSIBLE_SSH_PIPELINING: no
 follower:
   - script: sanity
     arguments:
diff --git a/scripts/initpi.yml b/scripts/initpi.yml
index ac27081c0d771900bfe8d3edc63878c8ec4e55a6..c27178d15c919cc9824e1314c69d01fb3cd0f168 100644
--- a/scripts/initpi.yml
+++ b/scripts/initpi.yml
@@ -1,3 +1,5 @@
+---
+
 description: Initially setup a new Raspberry Pi
 cli:
   arguments:
@@ -19,7 +21,7 @@ cli:
       help: File name with the private key to be used initially
 arguments:
   playbook: firstuser
-  no_gui: True
+  no_gui: yes
 command:
   - name: extra-vars
     value: host=%s inituser=%s firstuser=%s
@@ -32,7 +34,7 @@ command:
     value: initauth="-o PasswordAuthentication=yes -o PubkeyAuthentication=no"
 environment:
   ANSIBLE_SSH_ARGS: -o IdentitiesOnly=yes -o ControlMaster=no -o ControlPersist=60s
-  ANSIBLE_SSH_PIPELINING: False
+  ANSIBLE_SSH_PIPELINING: no
 follower:
   - script: role
     arguments:
diff --git a/scripts/jailkit-update.yml b/scripts/jailkit-update.yml
index 4879833095f9f34fc5b07a83a4cbcf0cedae2405..9c4c48d60afcb92841967daa47a3943b96d12721 100644
--- a/scripts/jailkit-update.yml
+++ b/scripts/jailkit-update.yml
@@ -1,8 +1,10 @@
+---
+
 description: Force updating all Jails
 cli:
   options:
     site:
-      default: False
+      default: no
       help: The id of a site if only one of the defined sites should be updated
   defaults:
     limit: webserver_drupal
diff --git a/scripts/jailkit-upgrade.yml b/scripts/jailkit-upgrade.yml
index b8264ebc60b3804fff041a79576f61054f5145ad..697a5ad69b659de2df0f519e6bd9786bdf80e37b 100644
--- a/scripts/jailkit-upgrade.yml
+++ b/scripts/jailkit-upgrade.yml
@@ -1,3 +1,5 @@
+---
+
 description: Update OS components in all Jails
 cli:
   defaults:
diff --git a/scripts/jailkit-user.yml b/scripts/jailkit-user.yml
index ece39f415ede2c1b48eb988b1fc85e7372103b4a..7df1b1fc2d591ee944f624b32ef64b2704c9da14 100644
--- a/scripts/jailkit-user.yml
+++ b/scripts/jailkit-user.yml
@@ -1,8 +1,10 @@
+---
+
 description: Init and update users in Jails
 cli:
   options:
     site:
-      default: False
+      default: no
       help: The id of a site if only one of the defined sites should be updated
   defaults:
     limit: webserver_drupal
diff --git a/scripts/lists.yml b/scripts/lists.yml
index ba32647586f899598de2d7ea2d680719bc164a2f..ccea246350e73315dc33efe99889d044a875b188 100644
--- a/scripts/lists.yml
+++ b/scripts/lists.yml
@@ -1,8 +1,10 @@
+---
+
 description: Lists hosts and IP addresses
 cli:
   options:
     ip:
-      default: False
+      default: no
       help: An optional IP to limit the assertion to that single IP
 arguments:
   playbook: list
diff --git a/scripts/localhost.yml b/scripts/localhost.yml
index aaaeb242f8e35d1305d717756a2390c2d01862e4..c063ae8bc8b7fba139ce4bc2fc13f5ec708b4fa8 100644
--- a/scripts/localhost.yml
+++ b/scripts/localhost.yml
@@ -1,5 +1,7 @@
+---
+
 description: Update local hosts file and SSH config, then call script hosts
-inventory-given-by-script: True
+inventory-given-by-script: yes
 cli:
   options:
     host:
@@ -14,7 +16,7 @@ cli:
           result = os.environ['USER']
 arguments:
   playbook: role
-  no_gui: True
+  no_gui: yes
   company: local
 command:
   - name: extra-vars
@@ -23,6 +25,6 @@ command:
       - host
       - user
 environment:
-  ANSIBLE_LOCAL_LIMITED: True
+  ANSIBLE_LOCAL_LIMITED: yes
 follower:
   - hosts
diff --git a/scripts/logrotate.yml b/scripts/logrotate.yml
index 6c7d7007e1a3d3e5c5590ce2be7da2b8d6e0ee77..bd1b213570d02347f29cf4df54960be5598b4fa5 100644
--- a/scripts/logrotate.yml
+++ b/scripts/logrotate.yml
@@ -1,3 +1,5 @@
+---
+
 description: Update Logrotate Configuration
 arguments:
   playbook: farm
diff --git a/scripts/matomo.yml b/scripts/matomo.yml
index 319af2f0e2de078f21c58ae5690b1c1419c078f4..3dcaac31c9662087d635dfcb05840a98bed04086 100644
--- a/scripts/matomo.yml
+++ b/scripts/matomo.yml
@@ -1,12 +1,14 @@
+---
+
 description: Quickly update matomo sites
 cli:
   options:
     reset:
       action: store_true
-      default: False
+      default: no
       help: If True the existing directories get deleted first
     site:
-      default: False
+      default: no
       help: The id of a site if matomo should be updated only for one of the defined sites
   defaults:
     limit: matomoserver:piwikserver
diff --git a/scripts/mysql-slave-skipone.yml b/scripts/mysql-slave-skipone.yml
index 37b42c264d5d6eff59bbef9c0806e7f2224d4049..bc23dc66e2124f2b2a84a131ee5f7dbc5895c98b 100644
--- a/scripts/mysql-slave-skipone.yml
+++ b/scripts/mysql-slave-skipone.yml
@@ -1,4 +1,6 @@
-description: MySQL Slave: Skip counter by 1
+---
+
+description: MySQL Slave - Skip counter by 1
 cli:
   defaults:
     limit: dbserver_mysql-slave
diff --git a/scripts/netdata.yml b/scripts/netdata.yml
index bc78d82750d43d85922d061671985d2e33fa87ec..9a6ccb0c958ef2fc67f1b09dc22b98e68056862d 100644
--- a/scripts/netdata.yml
+++ b/scripts/netdata.yml
@@ -1,9 +1,11 @@
+---
+
 description: Quickly update NetData
 cli:
   options:
     reset:
       action: store_true
-      default: False
+      default: no
       help: If True the existing directories get deleted first
   defaults:
     limit: all
diff --git a/scripts/network.yml b/scripts/network.yml
index d2e958c4597fada12aae5521f388d2dbad8017e3..9806214b4ff9d00c2806acb11b81d9abcc804766 100644
--- a/scripts/network.yml
+++ b/scripts/network.yml
@@ -1,3 +1,5 @@
+---
+
 description: Configure Network and Firewall
 arguments:
   playbook: role
diff --git a/scripts/nextcloud-install.yml b/scripts/nextcloud-install.yml
index fce280510955c0d5f536a0fee205db1901fd5374..92070a6df901579c055e0944ba4a1d9c58fd06b1 100644
--- a/scripts/nextcloud-install.yml
+++ b/scripts/nextcloud-install.yml
@@ -1,3 +1,5 @@
+---
+
 description: Install a new NextCloud site
 cli:
   arguments:
diff --git a/scripts/nextcloud-plugins.yml b/scripts/nextcloud-plugins.yml
index 3390b6f06a251f98df20c8ee46a594a89e90ef55..214a052f19d3791c97991dec11155748e5260575 100644
--- a/scripts/nextcloud-plugins.yml
+++ b/scripts/nextcloud-plugins.yml
@@ -1,8 +1,10 @@
+---
+
 description: Quickly update NextCloud plugins
 cli:
   options:
     site:
-      default: False
+      default: no
       help: The id of a site if plugins should be updated only for one of the defined sites
   defaults:
     limit: webserver_nextcloud
diff --git a/scripts/nextcloud.yml b/scripts/nextcloud.yml
index 612e2191aaa3300bc6627a4dbd71ac94d37d8d4d..ae510bc2e6c11fb09721d2b426e28e22b5d3b101 100644
--- a/scripts/nextcloud.yml
+++ b/scripts/nextcloud.yml
@@ -1,8 +1,10 @@
+---
+
 description: Quickly update NextCloud sites
 cli:
   options:
     site:
-      default: False
+      default: no
       help: The id of a site if only one of the defined sites should be updated
   defaults:
     limit: webserver
diff --git a/scripts/playbook.yml b/scripts/playbook.yml
index 630659465639753d00ca978c646f710409f010b2..e7700f2584af74b1b7679e923833c64bd16f1dbd 100644
--- a/scripts/playbook.yml
+++ b/scripts/playbook.yml
@@ -1,3 +1,5 @@
+---
+
 description: Run a specific playbook
 cli:
   arguments:
@@ -5,4 +7,4 @@ cli:
       help: Playbook to execute
   options:
     custom:
-      default: false
+      default: no
diff --git a/scripts/rebootproxies.yml b/scripts/rebootproxies.yml
index 0f305eb6662b38b8a25eb13d7d28316176efe14f..4564a84ca78319e7fe316029920dbfdc213be341 100644
--- a/scripts/rebootproxies.yml
+++ b/scripts/rebootproxies.yml
@@ -1,9 +1,11 @@
+---
+
 description: Reboot a set of redundant proxies
 arguments:
   playbook: rebootproxies
-  no_gui: True
+  no_gui: yes
 environment:
-  ANSIBLE_INVENTORY_REFRESH: True
+  ANSIBLE_INVENTORY_REFRESH: yes
 follower:
   - script: playbook
     arguments:
diff --git a/scripts/removehost.yml b/scripts/removehost.yml
index 38ac06a91a4f38e753b024025d59df0e4d878a99..8ca9a94d0b5951d412430194352ca461d83f2f2c 100644
--- a/scripts/removehost.yml
+++ b/scripts/removehost.yml
@@ -1,3 +1,5 @@
+---
+
 description: Remove a host and delete the instance in the cloud
 cli:
   arguments:
diff --git a/scripts/role.yml b/scripts/role.yml
index 898698b61adc3d1302c9ad965aace30304a090b7..a87f4f165f8f304c4226d7b23ea9500791a22045 100644
--- a/scripts/role.yml
+++ b/scripts/role.yml
@@ -1,3 +1,5 @@
+---
+
 description: Run a specific role only
 cli:
   arguments:
diff --git a/scripts/sanity.yml b/scripts/sanity.yml
index d52921f4dec166a5bfd0455476fba9297ac8621e..0c2dd6b1b02593b73d0f667223bddfd8c7269da5 100644
--- a/scripts/sanity.yml
+++ b/scripts/sanity.yml
@@ -1,3 +1,5 @@
+---
+
 description: Check for updates, upgrade and reboot hosts
 cli:
   arguments:
@@ -11,11 +13,11 @@ cli:
   options:
     force:
       action: store_true
-      default: False
+      default: no
       help: Force to also reboot proxy servers
     withoutreason:
       action: store_true
-      default: False
+      default: no
       help: Force reboot even if not required
 arguments:
   playbook: sanity
diff --git a/scripts/setup-local.yml b/scripts/setup-local.yml
index bbfccef6af31c821f59874426c20b8e884906f83..c1fb9415bf60c51567aaa843cf54f45f4ff7d408 100644
--- a/scripts/setup-local.yml
+++ b/scripts/setup-local.yml
@@ -1,5 +1,7 @@
+---
+
 description: Setup and update the Paragon wrapper for Ansible
-ignore-inventory: True
+ignore-inventory: yes
 cli:
   arguments:
     inventory:
@@ -20,12 +22,12 @@ cli:
       help: Name of the remote user if different from your local username
     skip-os-tasks:
       action: store_false
-      default: True
+      default: yes
       help: Skip all tasks that aim to install os components in order to do that manually
 arguments:
   playbook: setup-local
-  no_gui: True
-  local: True
+  no_gui: yes
+  local: yes
 command:
   - name: extra-vars
     value: company=%s path=%s username=%s install_os_components=%s
diff --git a/scripts/sftp.yml b/scripts/sftp.yml
index d132648dde57ce40fd6fb5fc1b51035ffeefb584..7a6583dc30ab7378a31f764d6811c5df85a950cd 100644
--- a/scripts/sftp.yml
+++ b/scripts/sftp.yml
@@ -1,3 +1,5 @@
+---
+
 description: Configure SFTP Server
 arguments:
   playbook: role
diff --git a/scripts/shells.yml b/scripts/shells.yml
index f5589225eb24a559d6efbd74e9d5bc24ef1c3f83..2c00efdbc6ad7d4ca07fb140d442e16c57b0ebc7 100644
--- a/scripts/shells.yml
+++ b/scripts/shells.yml
@@ -1,3 +1,5 @@
+---
+
 description: Configure User Shells
 arguments:
   playbook: farm
diff --git a/scripts/spideroak-reinstall.yml b/scripts/spideroak-reinstall.yml
index b600b0548581efc1a7c8860e3f960d70eb53675b..b26c27c9ccf4fe7934d1eece7ba6ca726addb15a 100644
--- a/scripts/spideroak-reinstall.yml
+++ b/scripts/spideroak-reinstall.yml
@@ -1,3 +1,5 @@
+---
+
 description: Re-install SpiderOak
 arguments:
   playbook: role
diff --git a/scripts/ssh.yml b/scripts/ssh.yml
index 7832c225c6464df6f3c07e42b8ef35639ac4fd23..ae92c50fb6a317798a2cc3744df010265e635910 100644
--- a/scripts/ssh.yml
+++ b/scripts/ssh.yml
@@ -1,3 +1,5 @@
+---
+
 description: Configure SSH Server
 arguments:
   playbook: role
diff --git a/scripts/uptime.yml b/scripts/uptime.yml
index 488a548b65d4825307a251e0b4ba19929762a336..d5c72969793e83c8553de7a2e2639422a9a872ca 100644
--- a/scripts/uptime.yml
+++ b/scripts/uptime.yml
@@ -1,3 +1,5 @@
+---
+
 description: Quickly update Uptime
 cli:
   defaults:
diff --git a/scripts/useraccounts.yml b/scripts/useraccounts.yml
index 222622e661ab208b1988c6ff1e6e5def2559004e..39643aeaf659005e77013372a42ba2e573c4d9b4 100644
--- a/scripts/useraccounts.yml
+++ b/scripts/useraccounts.yml
@@ -1,3 +1,5 @@
+---
+
 description: Create all users and add them to the correct groups
 cli:
   defaults:
diff --git a/scripts/userfiles.yml b/scripts/userfiles.yml
index 220818d98a534a1d6242814acdfaadfaf5ceef8f..743abc7983f8bd48765516606bfab3a5be585151 100644
--- a/scripts/userfiles.yml
+++ b/scripts/userfiles.yml
@@ -1,3 +1,5 @@
+---
+
 description: Copy user specific files
 arguments:
   playbook: role
diff --git a/scripts/userkeys.yml b/scripts/userkeys.yml
index 44b4552cf7b60cf488d40fb9a1f31522ba898359..f0590fb744e873a4100b6f1e9a29c8d706d770b4 100644
--- a/scripts/userkeys.yml
+++ b/scripts/userkeys.yml
@@ -1,3 +1,5 @@
+---
+
 description: Update all user keys
 arguments:
   playbook: role
diff --git a/scripts/userlock.yml b/scripts/userlock.yml
index fec27c1e9cd11e12a32a25fe023cedd9f93067ef..181aad115c5402f7702e9ae7d0db87c6f9813387 100644
--- a/scripts/userlock.yml
+++ b/scripts/userlock.yml
@@ -1,3 +1,5 @@
+---
+
 description: Lock user on all hosts
 cli:
   arguments:
diff --git a/scripts/userpwd.yml b/scripts/userpwd.yml
index 41432d359dc56678d1cfd632f6ac3c500e648588..73d07cf30c22f25e01c57ba1bdb6a269a9f0bcea 100644
--- a/scripts/userpwd.yml
+++ b/scripts/userpwd.yml
@@ -1,3 +1,5 @@
+---
+
 description: Set user password on all hosts
 cli:
   arguments:
diff --git a/scripts/users.yml b/scripts/users.yml
index 80696fe5450ea825fa8245cb412d6c3acffc6e3f..59e3d5ac1daa1f87f9320be26840ea4ac78ace07 100644
--- a/scripts/users.yml
+++ b/scripts/users.yml
@@ -1,3 +1,5 @@
+---
+
 description: Create and configure all users
 note: This is NOT going through jails and other roles, just the users themselves
 cli:
diff --git a/scripts/userunlock.yml b/scripts/userunlock.yml
index 268c3632308077984aa654ce7200e0eadaeedfdd..f885d2f15fd2e86211fefef1ed0f47b1cc335236 100644
--- a/scripts/userunlock.yml
+++ b/scripts/userunlock.yml
@@ -1,3 +1,5 @@
+---
+
 description: Unlock user on all hosts
 cli:
   arguments:
diff --git a/scripts/varnish-config.yml b/scripts/varnish-config.yml
index 73c6ce28acb95790fcd5439c9de12a491c530133..20dcd53feff54fc92c8121778df87851f4962cfc 100644
--- a/scripts/varnish-config.yml
+++ b/scripts/varnish-config.yml
@@ -1,3 +1,5 @@
+---
+
 description: Quickly configure Varnish
 cli:
   defaults:
diff --git a/scripts/youtrack.yml b/scripts/youtrack.yml
index cb8ffbfeb5b53534754a70866ae9363b7755010e..d109ea5f487a6cca9097458dee58dd1ccd710f6b 100644
--- a/scripts/youtrack.yml
+++ b/scripts/youtrack.yml
@@ -1,3 +1,5 @@
+---
+
 description: Quickly update YouTrack sites
 cli:
   defaults: