浏览代码

Fixed curl to follow redirections.

pull/150/head
Martin Horak 6 年前
父节点
当前提交
9673a18fba
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. +3
    -3
      linux/system/repo.sls

+ 3
- 3
linux/system/repo.sls 查看文件

@@ -93,7 +93,7 @@ linux_repo_{{ name }}_key:

linux_repo_{{ name }}_key:
cmd.wait:
- name: "curl -s {{ repo.key_url }} | apt-key add -"
- name: "curl -sL {{ repo.key_url }} | apt-key add -"
- watch:
- file: default_repo_list

@@ -150,8 +150,8 @@ linux_repo_{{ name }}_key:

linux_repo_{{ name }}_key:
cmd.run:
- name: "curl -s {{ repo.key_url }} | apt-key add -"
- unless: "apt-key finger --with-colons | grep -qF $(curl -s {{ repo.key_url }} | gpg --with-fingerprint --with-colons | grep -E '^fpr')"
- name: "curl -sL {{ repo.key_url }} | apt-key add -"
- unless: "apt-key finger --with-colons | grep -qF $(curl -sL {{ repo.key_url }} | gpg --with-fingerprint --with-colons | grep -E '^fpr')"
- require_in:
- pkgrepo: linux_repo_{{ name }}


正在加载...
取消
保存