diff options
author | Christian Poessinger <christian@poessinger.com> | 2020-04-26 11:31:16 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2020-04-26 11:31:24 +0200 |
commit | 6a3938cbf595ea24d2d2e3802cf78a0519483339 (patch) | |
tree | a38cfbd330f7f0d1c46ceccf33215180a15ef948 /data/templates/salt-minion | |
parent | bdda118c4573ba6e42376f9391d4ab16e73eb4bd (diff) | |
download | vyos-1x-6a3938cbf595ea24d2d2e3802cf78a0519483339.tar.gz vyos-1x-6a3938cbf595ea24d2d2e3802cf78a0519483339.zip |
salt: T2384: migrate config options
- delete log_file, log_level and user nodes
- rename hash_type to hash
- rename mine_interval to interval
Diffstat (limited to 'data/templates/salt-minion')
-rw-r--r-- | data/templates/salt-minion/minion.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/data/templates/salt-minion/minion.tmpl b/data/templates/salt-minion/minion.tmpl index 0b97c0524..9369573a4 100644 --- a/data/templates/salt-minion/minion.tmpl +++ b/data/templates/salt-minion/minion.tmpl @@ -12,7 +12,7 @@ # # Prior to changing this value, the master should be stopped and all Salt # caches should be cleared. -hash_type: {{ hash_type }} +hash_type: {{ hash }} ##### Logging settings ##### ########################################## @@ -54,6 +54,6 @@ id: {{ salt_id }} # The number of minutes between mine updates. -mine_interval: {{ mine_interval }} +mine_interval: {{ interval }} verify_master_pubkey_sign: {{ verify_master_pubkey_sign }} |