[fix] authelia:Quellen eintragen
This commit is contained in:
parent
cb7ed44c61
commit
c17fb1d17e
|
|
@ -6,6 +6,7 @@
|
|||
"update_cache": true,
|
||||
"pkg": [
|
||||
"apt-transport-https",
|
||||
"ca-certificates",
|
||||
"gpg"
|
||||
]
|
||||
}
|
||||
|
|
@ -13,15 +14,17 @@
|
|||
{
|
||||
"name": "packages | keys",
|
||||
"become": true,
|
||||
"ansible.builtin.apt_key": {
|
||||
"url": "https://apt.authelia.com/organization/signing.asc"
|
||||
"ansible.builtin.get_url": {
|
||||
"url": "https://www.authelia.com/keys/authelia-security.gpg",
|
||||
"dest": "/usr/share/keyrings/authelia-security.gpg"
|
||||
}
|
||||
},
|
||||
{
|
||||
"name": "packages | repository",
|
||||
"become": true,
|
||||
"ansible.builtin.apt_repository": {
|
||||
"repo": "deb https://apt.authelia.com/stable/debian/debian/ all main"
|
||||
"ansible.builtin.shell": {
|
||||
"cmd": "echo \"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/authelia-security.gpg] https://apt.authelia.com stable main\" > /etc/apt/sources.list.d/authelia.list",
|
||||
"creates": "/etc/apt/sources.list.d/authelia.list"
|
||||
}
|
||||
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue