[fix] authelia:Quellen eintragen
This commit is contained in:
parent
cb7ed44c61
commit
c17fb1d17e
|
|
@ -6,6 +6,7 @@
|
||||||
"update_cache": true,
|
"update_cache": true,
|
||||||
"pkg": [
|
"pkg": [
|
||||||
"apt-transport-https",
|
"apt-transport-https",
|
||||||
|
"ca-certificates",
|
||||||
"gpg"
|
"gpg"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|
@ -13,15 +14,17 @@
|
||||||
{
|
{
|
||||||
"name": "packages | keys",
|
"name": "packages | keys",
|
||||||
"become": true,
|
"become": true,
|
||||||
"ansible.builtin.apt_key": {
|
"ansible.builtin.get_url": {
|
||||||
"url": "https://apt.authelia.com/organization/signing.asc"
|
"url": "https://www.authelia.com/keys/authelia-security.gpg",
|
||||||
|
"dest": "/usr/share/keyrings/authelia-security.gpg"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"name": "packages | repository",
|
"name": "packages | repository",
|
||||||
"become": true,
|
"become": true,
|
||||||
"ansible.builtin.apt_repository": {
|
"ansible.builtin.shell": {
|
||||||
"repo": "deb https://apt.authelia.com/stable/debian/debian/ all main"
|
"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