Compare commits

..

11 Commits

Author SHA1 Message Date
da4f446bbf chore(deps): update ghcr.io/mealie-recipes/mealie docker tag to v3.2.1
All checks were successful
Deploy / Prepare Build (push) Successful in 5m38s
| datasource | package                       | from   | to     |
| ---------- | ----------------------------- | ------ | ------ |
| docker     | ghcr.io/mealie-recipes/mealie | v3.2.0 | v3.2.1 |
2025-09-15 04:01:35 +00:00
c112b12b1e chore(deps): update ghcr.io/mealie-recipes/mealie docker tag to v3.2.0
All checks were successful
Deploy / Prepare Build (push) Successful in 1m14s
| datasource | package                       | from   | to     |
| ---------- | ----------------------------- | ------ | ------ |
| docker     | ghcr.io/mealie-recipes/mealie | v3.1.2 | v3.2.0 |
2025-09-13 22:01:53 +00:00
2b96132914 chore(deps): update gotify/server docker tag to v2.7.2
All checks were successful
Deploy / Prepare Build (push) Successful in 26s
| datasource | package       | from  | to    |
| ---------- | ------------- | ----- | ----- |
| docker     | gotify/server | 2.7.1 | 2.7.2 |
2025-09-13 13:01:53 +00:00
c7bfb1a1fb chore(deps): update gotify/server docker tag to v2.7.1
All checks were successful
Deploy / Prepare Build (push) Successful in 1m18s
| datasource | package       | from  | to    |
| ---------- | ------------- | ----- | ----- |
| docker     | gotify/server | 2.6.3 | 2.7.1 |
2025-09-13 10:01:54 +00:00
b8ef57c626 chore: move gitea-images to vars file
All checks were successful
Deploy / Prepare Build (push) Successful in 50s
2025-09-12 18:12:03 +10:00
9ffc6f02dd chore: Update amir20/dozzle Docker tag to v8.13.14
All checks were successful
Deploy / Prepare Build (push) Successful in 23s
2025-09-11 20:40:37 +10:00
386faef1bc chore: rollback dozzle to 8.13.13
All checks were successful
Deploy / Prepare Build (push) Successful in 22s
2025-09-11 20:39:31 +10:00
54ca686e8d chore: update hosts to exclude docker and pve from base
All checks were successful
Deploy / Prepare Build (push) Successful in 17s
2025-09-11 20:38:06 +10:00
dba6210fd7 merge baserole
Some checks failed
Deploy / Prepare Build (push) Has been cancelled
2025-09-11 20:34:50 +10:00
ab805a4ef8 chore: move debian-images vars to all.yml
Some checks failed
Deploy / Prepare Build (push) Failing after 1m18s
2025-09-11 20:23:22 +10:00
4a88726fba chore: add base role 2025-09-10 21:43:11 +10:00
16 changed files with 541 additions and 421 deletions

View File

@ -3,12 +3,6 @@
become: yes become: yes
tasks: tasks:
- name: Write notify script
ansible.builtin.template:
src: scripts/notify.sh.j2
dest: /tmp/notify.sh
- name: Delete existing template - name: Delete existing template
community.general.proxmox_kvm: community.general.proxmox_kvm:
api_host: "{{ api_host }}" api_host: "{{ api_host }}"
@ -21,9 +15,9 @@
- name: Download cloud-init image - name: Download cloud-init image
register: image register: image
ansible.builtin.get_url: ansible.builtin.get_url:
url: "https://cloud.debian.org/images/cloud/bookworm/latest/debian-12-generic-amd64.qcow2" url: "https://cloud.debian.org/images/cloud/trixie/latest/debian-13-generic-amd64.qcow2"
dest: /tmp dest: /tmp
mode: '0644' mode: "0644"
force: true force: true
- name: Install Tools - name: Install Tools
@ -36,11 +30,9 @@
update_cache: true update_cache: true
install_recommends: false install_recommends: false
state: present state: present
- name: Install Tools to cloud-init image - name: Install Tools to cloud-init image
ansible.builtin.shell: | ansible.builtin.shell: |
virt-copy-in -a {{ image.dest }} /tmp/notify.sh /usr/local/bin
virt-customize -a {{ image.dest }} --run-command 'chmod +x /usr/local/bin/notify.sh'
virt-customize -a {{ image.dest }} --run-command 'sed -i "s|primary.*|primary: https://deb.debian.org/debian|g" /etc/cloud/cloud.cfg' virt-customize -a {{ image.dest }} --run-command 'sed -i "s|primary.*|primary: https://deb.debian.org/debian|g" /etc/cloud/cloud.cfg'
virt-customize -a {{ image.dest }} --run-command 'apt update' virt-customize -a {{ image.dest }} --run-command 'apt update'
virt-customize -a {{ image.dest }} --install qemu-guest-agent virt-customize -a {{ image.dest }} --install qemu-guest-agent
@ -57,22 +49,22 @@
name: "debian-12-generic-amd64" name: "debian-12-generic-amd64"
agent: "enabled=1" agent: "enabled=1"
bios: ovmf bios: ovmf
boot: 'order=scsi0' boot: "order=scsi0"
cores: 4 cores: 4
sockets: 1 sockets: 1
machine: q35 machine: q35
memory: 4096 memory: 4096
ostype: "l26" ostype: "l26"
vga: std vga: std
scsihw: 'virtio-scsi-single' scsihw: "virtio-scsi-single"
net: net:
net0: 'virtio,bridge=vmbr0,firewall=1,tag=10' net0: "virtio,bridge=vmbr0,firewall=1,tag=10"
ipconfig: ipconfig:
ipconfig0: 'ip=dhcp' ipconfig0: "ip=dhcp"
template: true template: true
timeout: 600 timeout: 600
vmid: 10000 vmid: 10000
- name: Import HDD to Template - name: Import HDD to Template
command: command:
cmd: "qm set 10000 --scsi0 {{ storage_target }}:0,iothread=1,discard=on,import-from=/tmp/debian-12-generic-amd64.qcow2,format=raw" cmd: "qm set 10000 --scsi0 {{ storage_target }}:0,iothread=1,discard=on,import-from=/tmp/debian-13-generic-amd64.qcow2,format=raw"

View File

@ -1,124 +1,75 @@
$ANSIBLE_VAULT;1.1;AES256 $ANSIBLE_VAULT;1.1;AES256
38386463636233373264323131333862626466386564393661613466323530633631613133656138 33663464343465616366356366333161336235663832306662653962373161363966383336346234
3135346230633433346361376665316331666231386339610a393037323931653836626262626263 3436616232363231636132613866373863623963303831330a323266333634353632656662343232
32386638393261393037663262626266306565626363663263666231313939643964316264316233 65386363383234336535616562316565653934666533356233363836336635356334336532376164
3531653138643236660a656165383736373438646235633566373839393038303263343265306231 3532333031626134300a316436396135613566373838663539356163346162653664303266383933
37393930643634656665336531616337353063343537396266646530613162356264343730366161 61653436383063373834353761633666303439313936323530353763626464356236363538666464
65643264343462396634363739656264643330393832383233313031363937653565663831323134 34633262393332663138396636646633323161303037363733386136363862393262396361373030
32356565646433386263643866633261383864626231316134376331646339396134616136623934 62623930343531333864656130393435626138646161303233666539616333356132666237323663
66363739303661316338323237656463616331333233303331636662663439333533313063663738 65626561653939616563303039333564366237643462363766333637353139313533373231323136
66666162343131313631373765303732323461643539356135386466613164393463623230633938 33353031376365306263656339643839383037373263346232323532316565643565353631383564
62643134393033653634376333666230613636666239386439343562383034663561326438356434 38646438303963666534663737393432376661383530313465346439396661343865616439376338
31303762643863353531363937343237663964363830316539613739396163393163326538303332 66336439336233323738646565323462356339316430383430313961316161663133316331346231
62383436303537363765633465383661663433643466646131303464306130393237353665666466 65336136636531626334633835613135666166326235313737303136396635653163356437386331
65613530383233353561656235303531343065613364363931633962373233666135646433396338 35373461303931363930663934363433613061303435376339303633346538303934633764383231
38313738376431616161653961646265386166643965343364393263353837373536366461633766 39373662613363356266636261656238633233376261393264633661386563373031656436353637
65306463626435613431363565303966396362393366373361653138646266346433356363333035 66623531626164336335323635366135306338666138326339386563303261306238336430353435
64393664366232623231386237626131333165303132313935613564333038323662373238633364 64633235323239623439326539383238653037633333383862363063363831626536366433393839
30383030323236313333616266643433616232383636633664363064383833633165656136306464 65646463383866316433363963396266366135643630333738333830613630346535646534333361
34313461626531333530396536393937613363323061393436353161393034613762326264613331 62326339323536383336306164613339316334636663393264613766356261353964393239343463
63626462643337353430623766333232393162346632343462303734623461623033616636313333 62383139646361326433363335343831323735313461313665373331613863306564633031623132
66346135366530343134656361653035373832323835336637663535303337393662626134373762 63636564626232646230613130643538343630656434373536623664613861356337333732653536
62656561343366313763366335646266323164366665633631376230386634336362316362336462 31613935326335373266626132396535613866366566393265616235646565353033316339636164
65303536313234636661626437633265666562656330623766353731393062303236376530613263 31326535633062366135376663363031643264653366363030306465333235343665353533313839
36383434623030363537356430373636623365333230656637373536323866343833353831653163 35633735393534656639386537383433613930383962373336333739616137373832653335303834
30666530333935396261373630396331303736626433663739373437353036346561333238386665 62383036323065633033633134316564643863343138323662333933613430666366636536616363
32383531633331376230366632336663376438353231366639643765383337646630306531313064 37323863323032393938353539636533353832376631366563623163633738633132356535643939
66663566303362353264306337303638623335366339303365336234383464396264646563636536 31623364326331633435376137386164383863373135613464386335373834383335393762363939
33383832353739393564613236353030396533666338363231623132303436663365373865326136 61343234383864396134373332636434346436373061666466353762323736643365623764356137
63663631656665343632396465306234383234303732623166633031633239326131363737306361 34396533383735636665383534646162663137303734316132363662316265383230373462653136
36323066623839643339313863363534313231386563393364313835633635636233663536326333 61656463666233336563623838646231396431353637383635326362306137353564376265636436
35346461626266376637313334633039383662626161623462656535393136386363326663373463 37653834343033393563656364393135616363333239653261383264393230323065333130643262
66353834613939643862386565366136356237313231656437363266303231376336353532333438 61666638393237613530643063303966393638393236393133353430343934306564396237363138
63346165363031383136636238376635613939636165303366303266616165393863323430396362 32343536336334326132356630333632386333333435636139653465666638393433323466626565
38303833616462643339316439366539373066643937313134663838363131383533356466656232 62353534343736383430373434623339303034313735343861633833623161663935356333346332
61316264316564316330326265383766643037666138393565633133373437653934653032386136 36396666613034386265613339306233656332316532363838623539366332343630366436373065
39643134636431613533633139396338623631623536333930646634366636656662383133383236 61323237306435393465643961366235393234383732633039393464626632396235363130663064
31653266336462623565343266663134323939323637663630653164326531303934646131313932 63353035376364336164643730626132613230373738303037653233333466353666316235346437
35643330353033613731366164323534386633623565633564376436343532396530636165616438 30363339623861343364346338386231336535366466373830336531326266623137316232653031
31383130653230383730623939656437316161306235643132313633633162626561343339303761 34366439303365303766313761663137666533663238346330373530623661386166376361623862
32343637366362346235383765366633333337366232386661363662643633613830366661393832 31613034303037393065346133356139646464623130633639626539643236623231386363383037
38313565616433633039636665383539333633383734313661313766353062626430363034333862 35656637633438356232623166666135336239363733666236306330646562646161383439363935
34336332306335646362333766346135383738333065633934396134373463333162666362653630 38383833383636366563326434353637386562353237323264666466663365303661386662663633
30633365346165383361646633353231343532343532353536383464636566643665346236363632 62313661373335386531663735636136313939643331316232666639393231663865316433333165
62333766343138393763333539633532623330623136613738626136633162366534613932643463 61626631303033393230303465376464623362333263343364616135313261643865656232386537
62613131376263333063376638323737666564653664306632366331366332663566666133613534 32383436616135336336373964393437623634613731646463633737666338363266383863653734
61393435333332333961376534363131633461373331323634333833306436663938386166393635 61313166373366663364313165343436666638623364613962383364646133643233643136373438
38373136393737333736373062363837363533323031356665353766383164383036346530313831 39626139656430383033636136656138633863613833326530333939316538323362356236316532
36393033323331353836623362386630643737343536376662643931393863653865613139353138 63353965323632333933663034303132336130383361316136633537313562666230323634323132
38633064343837313564343834613132306239666630636336626234363964653939303366363566 32623062303538373637313538383237386337666435626364343636386163363662373336363366
39666465396465356261346234346435356162366564643436313033316338376431303330313539 32303132373130646666333930633964643939333334373331656261343864636637373963343962
61613538326336386230616339363462353138666362306565653766323639333638343863326636 63373034616634323230613835626364646431643439313561376631353937373238656231643364
32363534333131356535643063316233376336636633643630363761396464646438613239386563 33646262656435336438623164373163373236613866313664376338653264616461326434333434
37356333303133666439653632653533636336306266376535356330353337343332313637616336 63613339613838633536376165633734623037333737323832373430653963643435663735393164
62396131633162356135356439363534353032373765373635366533393061646331386633633239 61373932623861393132633936643339366131356665623765653836643437383064323635666236
37346566353736653830633238623530393537373164323861343961366263303764643937316234 38303533306265396431653333663764653662386162336535373833373837363036663936363566
38326361343163313135396461643037323962386262636566313761353033323263666631393830 34396365613131643537613935656132653761616165363865633036303236653563333863666161
62326362333264323666616638313135636233646466366433306533393031353831366266393130 36343236613065656536613464373763313436376135623366356466663535613463613533303134
30653630626239343330633736303831353336356636643938306239363533393066353034316338 33613364353361623962303566356161376137393937363637363164336464373164623866613638
37336332386565646364336331316632393864623066646231346135303163623833636632376338 66303136613364303131653938656137663234623365343138653637646261616432616239306661
30363234313863396663633237613165373137343536623831366261393264326133356461643239 62386361306134623335373064626266343630386130636264653962666336623336333939376464
35633937363761356564373230646365666666346630663935636262313932343534343963623635 62313263613665333337326366366433386437643531656434623835666435396539643932353963
34326365646565616634386137323933653931373061303465663939373831366336653830653566 34623463326164636465653336386363326263306337396665633432303866363866636530663432
36656631366434633065613430366236373165366365346664303266326136393438306563353265 33356361663163623933653033303031363135363331626264313566383138646562663330356531
33323732653330373764363664363363363662626434626537386337383531303566663836356464 38393030623061646161346630656638353061383534313563313363613135376262633063386165
34363635636161376530383930323361653063313338666162643234316363373835643633353738 36626161363535373033353730353065333833613637336565383330663363636266396136656365
37663762326665336339373665626534303436626639313636636333383666613966343563613861 32623232353139633534373964316133383862343438656333363264376633373232356565343566
36343961353339363137363539653435373132663263303533343935336435353161313036633364 39653563666565316238333434326565366466326630633635363232633961373261373965316332
38326265313163623864666563373632303461393430613639616634613632303935393438333663 65376466363338313333653533343937373764343762313835306662383963326439623838616262
61666166613738633163646130386364393137356436376666646162653937663137333764353032 62663436343262346161336238346538336633363566613863616662653132376130343334336531
37353238613732623361613965316231623631623536623261643839323431396130363063316165 66623733333330633465353031383865363762323532333066373564626666383031303463323363
38656635623762336465393764306261303666366538633565306637376664643963343239356466 30326536386264636331323363656466656636653537303364326538313930393132643262346461
35656337643361326262643262326136306666303138663533373966363739663131653463363935 32643631373162366666316661643139636461626339356364396233643762396466633637326130
33326438393464643436326263663066623233386132636136636636646133303565326231306237 62613461356461366233336565393330376666303165313762353837356532323032636534343038
34383235356238326561396130306362303263376466393462663938643362353165386435666430 36633963643632643662613639353032363135356533663366353736623531633832386335316463
62656234323537323534356561646662306630383330386631323334373934393864666664306566 3330363866333234616138303030333566393633356431363466
39303661656231373032643239303866633434626131366164316439656466613830626262663538
36373437646464323265643365393165396230316636343466623962663038356163373433313335
31663566626136313436643237316631636133353635613862333632613537313531623036623961
66313131653731386333383962346634346138663666393138323661306239643736383533376432
65653663303539326566646637333235653030356364623565633964303866313364663539303935
34373536663935623638613930366533316334303566366265386266333466623331326635346330
62323537666361626166323630303961363763386164613866613262336366633235323231626638
30663038356535666638303134656634613134373837323736363430316137613335656531643062
36356562383361393061663466323732383965313733633034346162653966313735393563656536
32666361366430323239613437313833373330333336373636613463613566363337393161376535
39336538323635656663613133356535373562383933616666666338373532346238353163616535
33393461393365313764623332343332326535333533343934346138303132656234643731373238
66633034643965633834333966323462323433613165303930343834663532626531343431396430
33383732623165393032363437646430303062393032353632306439333261633963653638666232
36613433303432623164646637316131333364323830323334633538333166306537343936393961
61353831396338383436646636616363336564396336653634393666316566326165643562386534
30383462323863336630643261613561663066343665313161643161333339623739323966383663
65366562643363653534666666666234323964613732656334353534613966386233643335313736
32303632336635656239326562386234383136346163396261653363316136343034386262333838
62663966643530393964306437313534336666363765333431303239666164616665633332306466
35356432393430663638376334663235663337393637343437376261653438663365653730343366
38636538613731383833336231336432353561366265323933313239613836656437653935373663
39303535613365343834373934343066383233326565623438373161626433323264353664316464
61353265333636653039643934386361643931383033373636303138303635303361383538353965
61613639616136376633303634643135613134373763323635386230393339633133373332636161
66616338343737613333656234363663636132326665333734303036643966383239303563636563
64366437656265656466376465613233653838343038663862643330653430613237656435383835
37663866626663303032656163663635373037323839623439323264303333386338653930343666
61306630653461346632313265313964393932376539663233333336313232363838343839643239
61383062306333376330393337356364343131383530653461383737366431646236366538376632
61636638323166303666633766623836626431333636626462653633343538303135323532343636
62646333623164343665363039373139643466363366653935643365386131333632653031306165
62663864383739303161356134643664396363303964663161383033393333303733626366316662
39646466313534386637636562313163393865366631613838353637653533313232313666313838
31613166653262386633393663366639336232383166633033303435643262656131343338643832
66626533306430623733386233633561306536386262623030306630363362646338616634396339
62363736646234383935383930343464643864393162656663386437323636613033643439613333
34633266363264636466353135356537653931383131653863386137643032646664643133656536
34343864643366376663616437373363636233343439353264656638326338333262386534346136
35656130643533343736623564386537363737343761303739646361633165643963393166336265
38336530333933653462393263316164383162373065663937363736623430373863303330323261
34656534363235353032366237646336373039613836626130633738313664663162393031386561
39373564343533373263306261653537663439326462393735343964323565343031646163333939
62623834623939313438353939653138626165353434386638613439363739363465613037616636
37333732333634333934633037613038323934636434303731363535663732663361613261663734
35373061356665663936333438336132643930323463373635633137663132333362306136303830
34613962356439303664323734643265313131643135366531643235633037646337313537323033
31313837376134363664343766316436346162363264383165383561656362316633383136316533
653961363033343965336230373962656537

7
hosts
View File

@ -16,3 +16,10 @@ vps01.comprofix.com
[jellyfin] [jellyfin]
jellyfin.comprofix.xyz jellyfin.comprofix.xyz
[base]
vps01.comprofix.com
vps02.comprofix.com
omada-lxc.comprofix.xyz
jellyfin.comprofix.xyz

View File

@ -1,17 +1,12 @@
--- ---
- hosts: all - hosts: base
name: Configure all servers name: Configure all servers
tasks:
- name: Gather facts if run with tags
ansible.builtin.setup:
when: (ansible_run_tags | length) > 0
tags: always
- hosts: jellyfin
become: yes become: yes
tasks: gather_facts: yes
- include_tasks: tasks/base.yml
tags: base_install roles:
- role: base
tags: base_install
- hosts: cloud - hosts: cloud
become: yes become: yes
@ -49,6 +44,9 @@
- hosts: docker - hosts: docker
become: yes become: yes
vars_files:
- vars/gitea-images.yml
pre_tasks: pre_tasks:
- name: Connect iscsi - name: Connect iscsi
import_tasks: tasks/iscsi.yml import_tasks: tasks/iscsi.yml
@ -72,10 +70,12 @@
path: /mnt/nfs/data path: /mnt/nfs/data
src: truenas.comprofix.xyz:/mnt/datapool/data src: truenas.comprofix.xyz:/mnt/datapool/data
tags: nfs_install tags: nfs_install
- role: traefik - role: traefik
vars: vars:
traefik_host: traefik02.comprofix.xyz traefik_host: traefik02.comprofix.xyz
tags: traefik_install tags: traefik_install
tasks: tasks:
- name: Deploy comprofix.com website - name: Deploy comprofix.com website
import_tasks: tasks/comprofix.com.yml import_tasks: tasks/comprofix.com.yml
@ -97,10 +97,6 @@
import_tasks: tasks/homepage.yml import_tasks: tasks/homepage.yml
tags: homepage_install tags: homepage_install
# - name: Deploy osTicket
# import_tasks: tasks/osticket.yml
# tags: osticket_install
- name: Deploy speedtest-tracker - name: Deploy speedtest-tracker
import_tasks: tasks/speedtest.yml import_tasks: tasks/speedtest.yml
tags: speedtest_install tags: speedtest_install
@ -125,10 +121,6 @@
import_tasks: tasks/radarr.yml import_tasks: tasks/radarr.yml
tags: radarr_install tags: radarr_install
# - name: Deploy readarr
# import_tasks: tasks/readarr.yml
# tags: readarr_install
- name: Deploy sonarr - name: Deploy sonarr
import_tasks: tasks/sonarr.yml import_tasks: tasks/sonarr.yml
tags: sonarr_install tags: sonarr_install
@ -162,8 +154,10 @@
- hosts: omada - hosts: omada
become: yes become: yes
pre_tasks: pre_tasks:
- name: Update packages - name: Run base role to update packages
import_tasks: tasks/base.yml import_role:
name: base
tags: base_install
- name: Create directories - name: Create directories
file: file:

View File

@ -0,0 +1,26 @@
---
install_packages: # Add addition packages here
- rsyslog
- htop
- vim-nox
- git
- zsh
- curl
- wget
- apt-transport-https
- ca-certificates
- gnupg2
- python3
- python3-pip
- nfs-common
- cron
- jq
- sudo
- logwatch
- sendemail
- libio-socket-ssl-perl
- libnet-ssleay-perl
- iptables-persistent
- rclone
- parted
- open-iscsi

View File

@ -0,0 +1,26 @@
---
- name: Replace sources.list entries for Trixie
lineinfile:
path: /etc/apt/sources.list
regexp: "^deb "
line: "deb https://deb.debian.org/debian trixie main"
become: yes
- name: Update cache for Trixie
apt:
update_cache: yes
force_apt_get: yes
- name: Dist-upgrade to Trixie
apt:
upgrade: dist
force_apt_get: yes
register: trixie_upgrade
- name: Reboot after Trixie upgrade
reboot:
reboot_timeout: 600
test_command: whoami
when:
- ansible_virtualization_type != "lxc"
- trixie_upgrade.changed

17
roles/base/tasks/main.yml Normal file
View File

@ -0,0 +1,17 @@
---
# Gather initial facts
- name: Gather facts
ansible.builtin.setup:
# Update system and install packages
- import_tasks: system_update.yml
# Upgrade Bookworm -> Trixie if applicable
- import_tasks: bookworm_to_trixie.yml
when: ansible_distribution_release == "bookworm"
# Move to Trixie sources.list.d layout
- import_tasks: sources_list.yml
# Remove EXTERNALLY-MANAGED files
- import_tasks: python_cleanup.yml

View File

@ -0,0 +1,17 @@
---
- name: Find all EXTERNALLY-MANAGED files under /usr/lib/python*
find:
paths: /usr/lib
patterns: "EXTERNALLY-MANAGED"
file_type: file
recurse: yes
register: externally_managed_files
become: yes
- name: Delete EXTERNALLY-MANAGED files
file:
path: "{{ item.path }}"
state: absent
loop: "{{ externally_managed_files.files }}"
when: externally_managed_files.matched > 0
become: yes

View File

@ -0,0 +1,42 @@
---
- name: Remove old sources.list and sources.list.d
file:
path: "{{ item }}"
state: absent
loop:
- /etc/apt/sources.list
- /etc/apt/sources.list.d
become: yes
- name: Ensure sources.list.d directory exists
file:
path: /etc/apt/sources.list.d
state: directory
mode: 0755
become: yes
- name: Create Trixie sources.list.d
copy:
dest: /etc/apt/sources.list.d/debian.sources
content: |
Types: deb deb-src
URIs: https://deb.debian.org/debian
Suites: trixie trixie-updates trixie-backports
Components: main
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg
Types: deb deb-src
URIs: https://deb.debian.org/debian-security
Suites: trixie-security
Components: main
Signed-By: /usr/share/keyrings/debian-archive-keyring.gpg
owner: root
group: root
mode: 0644
become: yes
- name: Update APT cache after sources.list.d
apt:
update_cache: yes
force_apt_get: yes
become: yes

View File

@ -0,0 +1,48 @@
---
- name: Ensure debian-archive-keyring is installed
apt:
name: debian-archive-keyring
state: present
update_cache: yes
become: yes
- name: Update APT cache
apt:
update_cache: yes
force_apt_get: yes
when: ansible_distribution in ['Debian', 'Ubuntu']
- name: Upgrade all packages to latest
apt:
name: "*"
state: latest
force_apt_get: yes
when: ansible_distribution in ['Debian', 'Ubuntu']
register: upgrade_result
- name: Dist-upgrade packages
apt:
upgrade: dist
force_apt_get: yes
when: ansible_distribution in ['Debian', 'Ubuntu']
register: dist_upgrade_result
- name: Install required packages
apt:
name: "{{ install_packages }}"
state: present
become: yes
when: ansible_distribution in ['Debian', 'Ubuntu']
register: install_result
- name: Reboot if required after updates
reboot:
reboot_timeout: 600
test_command: whoami
when:
- upgrade_result.changed or dist_upgrade_result.changed or install_result.changed
- ansible_virtualization_type != "lxc"
become: yes
- name: Gather facts after reboot
setup:

View File

@ -1,51 +1,51 @@
$ANSIBLE_VAULT;1.1;AES256 $ANSIBLE_VAULT;1.1;AES256
32396236613762346266373632613335306233666563346466653731653034613637656335636463 35626532386330333238646264623935303036633766383563383639376466313565316431663436
3864336133316534333262373835643732303963353538320a343235363461613837383962303762 3831653462366235623132303133646539333961396537620a356435633963393933623731613133
62373739653137326664306563646632663661323339626636333461303132366133393266313833 37356664383133666436346630383530363139656233313831396637616437663239643264663062
6137313537666138320a376334396531643233626265643538613133313866623236383338353035 6566363164376538380a313630656433333339396134383935383162653762343636643937653934
62623166316366393837313166646539376362383363353862303439303230376163366335353237 30306330623532356362336439323766303439363238306561323564626265633132313232663764
66626130373762333536396265663262376335323162633961656139313435333765363163633161 30303730366465343438623734383030336266386638636666653461303533363865643937646630
65393532663339363738623232316135326338656330303764633530663661626163343533643430 62343331613138393962303431323739396261393265613436343238643338373262626437363931
63646337363636386337373435373939363434646161616638326665316636383362346232303763 66653266353939363834653166346135663730623363386234303630653038326232626135306262
39656636643261383137306339633433613534313362636537393433656230613333333463396437 66646639333765613832336230653632343332633561336632323562326664313264626661313839
32623630636464313665656562393766376330633038366534623634656535303237666332363638 32366133396263653466653963363134666565663166303431333735306135653162386663386638
36373566303432653664383230626436663362323336336233396363353430353535336464376137 35663231363666323961656434646633303236653235363835363561643931313166396132333461
33393762363330633963656161383535306365383062616466626266373637396338643930333931 34653066323065373638356461313635386338666662313763316462626436303233343862323164
66373739303232393233303131663031333639346236633030346337313938383739386561386263 35613266633035336166376535653165373836333463386535623837376162383337396230633535
36643831323930666665376237656163393532333438346332653562306532636530386365636331 35666663306563396639636330633436326130656364663432333231656237626633376661396462
38643637613261373030323963656266613661656663643330383333336336383433393633383335 35323238326531326663663765636333663930646465333135313231343966636334666366393461
65326130646536323861346437336362333630613034366639656536353430326366316530396436 66343462336335613362326334363533663063326162613361323364383032396337343435636132
34636235336433666261386163316330363337393963643761646261633932666134316331386463 36313239353761313564386237383835623730343761396165336163306234303136373334343339
63643463343162313162323537623764303564343438636133643162646530643435306262653838 38323733396161663632643665613531313439643761316339306465343236623531663864623366
30376539303130303536316136383761333836646231316563633564643635376230313333653739 66363934383335636636336638663935656563386263653735656635366435333763623465353964
38663032343736626461303835656662323064666139323935323534346362383636636237333937 64333466666238333165343835616565613438313333393562373634376161616666336636623231
34616663666364323734643530343936383030326539623065356561633563653764386134633562 39626164363833343431353661376535303135356236663032326165613666333265333433666238
37616463633931336233623335336331313463656132653331303530616332306332613936623130 36653163626135633436663265616239666236366261343666366132356662376465313235663933
63616264333531303762663665323636663466313933393064623534653561343561633632636565 62306266343039306531306162323766303634343633313334373364303134393563643530356265
39633435313963393034366336316665323339333962343666666533646632343666393332323635 37366431306333316233636137336532353565616161313062643835613033393736303066323664
65653062643332663362343666643433336562353639656366623961306132313734613838336237 66633164636135656361656538633938636466303630396464383530353638646632356139383364
36653962353839636662363335373238393433613037623364356637336562303765313466313166 36386666313131396365323361346538306230306338313862623762323038376265386164366562
34326365393433646166653461333138386166663537343566633565316163323866333932366432 35323839383635373735633430633961373439336235623730343132663139616235303033646235
34666532346164316232663964666132653232393264633066333734333238636135376263643937 65346433376136643633306366386132666235316461343430383365343163333539643665666533
66353665353564353938343934363337396165616462336439363338343065306533653334636566 37393330363931613836393534663764666437366363613662613433363962656431386339326639
35356231346431646237636662633030313135633663336163383965656136393238636334396137 30373163386137396637653833353531623966623665306265653133343832346363356133646330
65613833666662353339616434623735386638656331643831383134626163386636313633323333 30333461303365643166343530393834386136303837666636356264316465393163336661303332
34383862373634373732613333656437323436383962306163633833343430303336383433366336 37333239353165613863386161336466356563653264633662613436666637663730366365353364
63313138383237373330623536383438306330373164336637646165313562343935656566653531 64326563356237643765323432383033623735386461353362393232313339643936306235383732
30356365333863383165633634343230653735343164393030313339653563376435313832396266 38646466316433613863366138353463393932316363623639363634663135333531343131393465
65623237393066666163363530356163313861323366373233383531386533623965306237623137 62393239663533343632336463663036646134323836656536613133303466373531653266353537
33363239396634306466663535323736373333643266336164336230303836643939343335626339 65363636633062313565663430373130383463363439663933636362343537633538616335393866
35373166616136633666323034313364613334303462616564383861343738653964663332616536 35363036383537356361653534326564653763386262653031326537356434396432326230353133
32353135633331336239353834666237313939386334383261663532333139636363353436363864 30646235383539613237383931386331343864616434633162643237323434326230353063366465
33396336623566346532613738353332643965623335653162323534613330663964353833333937 64623662323431363432626434643663653261616439383464333565633635656135663633366364
30373761393834323964633039393339376538353261396331316336323333383064356363633264 63353663616236346661616534376531316539333630663132326662303862326637323535643337
62613432313436353163383837363935373164366236343936313366623936336439613364336639 61383138303863393234323639663661383165373733353633373063373332623439623463333665
63336536333732326236323761323033613965333763366237316431303363346263373131663338 36373135633064653836643232356431616665383636323132663461386663396139396639396433
65376535386239353362326630396232623533626266376233326330316466383564313935663134 37316336633135663232623063313637383833383864393731623838653335303263626261663765
65363839323134663537356663346437616662366463393036353736353664356538656163353562 65326130373137333437333561613366633561343364386364376361363334613838633163663565
65323162663934653462353136353065333666353564313066613466663734623066623439613964 63303230616666336436366434373139333164623136636163303135386334653632333932313235
36353035653163306661393335636430623233633962303033656539363265663135666663643164 31663865363061616264326139616138313432613934613633393433343036393237343461366665
37613334653964366433646366613861336335373137393065373739363863626334316631323332 65383537323834373864323532646563613564353564653733326238363230626631636464616365
66623465373730373231316265653330383061326231373931636132663233643735343564313636 33336666366435303362316633343661306664393534316134343935663733303631303535653938
36313330336461616134663336306566646639383435396236383162366266366662383635333832 35323437383630323962383835623665616632666131343334363563383030306233373364316134
3266363963363362343563653131373339666163663536653032 3937383465656433383231326135656336363630373666623539

View File

@ -1,14 +1,14 @@
$ANSIBLE_VAULT;1.1;AES256 $ANSIBLE_VAULT;1.1;AES256
61386364396339353533653064303734346336653531366139333738353461613037396365663265 65613131653761356333306262656462366263303065633937316464376464396363666137396436
3731366362343630646162353636316565356563323135350a636335653931376137666139653739 3833363932633334643062326262643439653632613934390a336539626139373039363536366139
36306631376639336561643064386430633636343362646233623263356635636134303931356364 37623730653565316666633932313663623864393437333433646632623164343838356639623935
6466383864366236320a376134623032383566643166626231323432373562373864333864653032 6438343563363065330a326537646131386335346234323837343663356163623965386139666562
63316630303362616337383833623733316131323764626532366338333566643834326236383232 34363031396138616466666339653661656566623933393730353262313434616635303565336662
31646330363965386233383739336238336538666165383166393834643134663937393535333361 35343732656237326165376136636664346339623132376139313166386236336431313037383532
34373236386339366436643733393030313331303537636233383864623435386166366537386633 36393538646461303939356165363562313763656636326539623262313332306339363362656563
37653030313066393136616661356564373932643033663735656238313132396664623438343833 31323533323163383762363734326466363235636662636362383237666534363339323763353134
65356539386435656433393933653939313635376639366163353336373661396230336533626238 35373763343338383862313462663236303562643565616363626334303836626261373339366138
39643438313763343635393165376263666633363963623962643263323531616466656532646432 35303434623764323064353165316365613166643462613464633463663539326531393131656665
62383430346666343465613436346637333336663562316165303864376464363566343165633665 31303330636666653033363435356535613362643065373731353234313562333434306539383963
66353134313866393439323564353834346436326132643439383134623864333765616162353436 66306433396430643065386431313236393731333863646135643136643932396233613664323363
6338 6435

View File

@ -1,196 +1,196 @@
$ANSIBLE_VAULT;1.1;AES256 $ANSIBLE_VAULT;1.1;AES256
63623637376239613064343634336463616165333831353331633738356662303534303133363338 66623464636635323363626537353562376366333733386538366636393837323664636535346538
6334613838656263393764666534333434646232616662300a306638646461363133613365323635 3531663331653566393239623161303430633133383832360a346431633639356133633065303564
36383130373964333937643532356538303936666434653566616232363934336531353732653766 35386238353532613931646338353165396239346364613636663262623164636636343935353039
6166333932323764350a643331313162376239643364633337376366363663306539363962613431 3630356463346137610a643835383137623763663562353763646565316161333139316330623566
64336561626166613061353962323461646664343637386664363530626666333930353365383334 38346233376332393264376261653637363361613937366464386465383133333262366237303130
36313939626436663436623235656435666136653834336131303434663739626135643430613836 66663762636562336563346364383133616432323831646632363335626264613762343666316330
63386138363963646433643966613331633563633834366364353337323762663232663865363666 34336233306534666137613632363761346236636663633038666137346432666531386431333063
32336432323962366237323833656535386338646265336562396437663539346430636635623037 31313962306633353766353439383463333932623066646266643433613339386332653432373063
38613330666362396562346137316132363764376265636337646430303437663233663464353465 33616230393633376631303662326237393531653138393530393234316433613832616533336463
34663530323561626237333030376466636436396331643136343235316161343934646366353335 31616266303162376166313334326236333236396136626431616166636435646238346263346437
63333762343033353066646236633437396365363464366231333462653239666237343564313934 37386239376464626534363266363263393865386437306439363262343236653931343562313039
38373162616635633730316334613239383938626364633732353031616261363066653266346339 65373762383634633031393336653265396636636539336531373134633037636162613266663039
39383537396635626639636433396263613231303030306136653262326538636232663131633531 33396662366338653964306134393336663737323637313034346438363961383366646631336134
36336432666461356537353438386464396661613664303331313466663836353939383630396663 38633764643134336132316531643737353362393131616533346135393061393062373264323436
63316363623235333934616635303461376138646530393936353934316431386234383364353166 66383664343538373465353639353434383763323833613062373763643934623839633265663363
38346162633133623066343532316331313661336365323664353066663864353263653532623238 61636266616534663331613939646333396630376631366166323736633763323238316564663665
66326535306537363831613538363761623366626436386261343365643239323863303263363334 36633532333733343436656161376638356230663965653561623334353534396165313862376562
63626164656239643038663765613339633064323137303834333035343935383737646430316631 35313434376661353330383430386331373433393436333663306437356465656166616635383661
35386534343563393636326164653062343139353265663032393830333663323831616562393665 39653961396635323138393762613238393637306233386533316266373333636563623462306637
61313665633731313737626362353032316432656665623832333461353464313735623738386564 31653334376633336238656130343333373563663565343930386332326165303639643236633035
38343464333264626161363839333534353131366130366361656363383465656233626334323830 34346464643333646539356438616537343131376431316465353332323038316333613865656131
63306431353365356438393037666132366637383530653636363065323161623831346434343964 62646535653063363636633132303932626136623062346131386361386237336230393632653939
34303730646531386265326430313733333233636337386639613466626335326465396536653337 38393631343562363163333364363261313364653330663563313830633230303563633737356134
32613035646639666635366662653938326632373264343731396633383134636534343064646335 30613563333739663966626433663136666431393431366464343663366531653835333663386366
39326263393131323665306636633435356234393864393835323662643636346262353961393162 62666464343166383462636331643261346630323138363233636532363838653730393066316432
37663962613430626135653666306133613166393736633530313139613161333438383662353136 65306139356438386238616638613131613561383361313934613237373935323538333933376563
32303033636634306562633739393831336333383931376536326137353935383537323464613362 38313632663731623761623765653961643464386630306263616663616361396437366665306632
61326338643435633530333163613235386434343637346636366262336539333762643232643362 34326239323137666433386438326262663431313034383436333335343061306366343238396161
64643032336264613664643433356238323836393236306136633038323436656335313733356166 64653935666436653231393964623237366639303862656632613661336232313061616662623164
37393965643638626236626566363463633837343561353433373036636430643436613862346462 64626162646136336635323237653233313963383262346236633130663663633565343063333737
38386432316631623432386661353765343338323164303535613864643264343363303365316465 36326233363364623465643263376464373032383436666566313134643338613832356630663231
31626334646562323139623630363439613436373537626362643530613036306435383039363836 34623431336261303236613430386138323437313066623535383130396366373139363466653033
30353932306332613034666439356232366430626230336566666162393437323864656663346639 32353131623264383931333331363934626366316265383961356264666233393663396163666630
31633331386432323830343062383237356463363637336436306432396539306166613138333162 66646164323561316535393633316533333331646263616538623164643465326639323931303639
61346634373336383732636638376330383131333961656534636663626335366264393733373234 33383364623637336464643538396165666132623435633666303264656661626431323432343265
32623430336233653236633536626563356239636161373733633337643239613938336566336463 39623534346239643531616633373035333462646130353131316166636237363439376532626362
34343236323664363561306337646133616431303764346437313938613430386131323335346331 66363139353962663839363432326562643862313933393338393732373336343338383630646331
62383839633162366366613236303639643163303134383662313730666365376338376436656462 34363066333862616437316562383030356662313932356562396438333233353330343039613466
36643161363738303531353364393764633139336239336632346164373766666336353339633737 39626234376133383236363564316533373534316535373862396334343732663038323262623166
33393364306466656164616531663662613632323865623966393564613737643765343530346131 62623862653033326466303233653363656561326163323361363163363332613264323036616535
63653233313335333335636161326265323263306636323761396131666339323534343133333966 36383862633038643361323035636464383035343237646264626238373637323338316535343932
63343761343135616363363638366430313430666539303135623065313131666533386364623861 64666461636636396335326538313266303162313037633436633434303263326631323364373637
36356233343566303161616337343536663236643634626139643563663231353131316561633232 38336237363964363439366665363437343361653632616131363662343736303835316239626164
62666238653130633536626432313935353438613666353735613262336134346630343839306166 32333136613639306365343763323533376138663161653036626139653837633532376338653863
65653732613666656636343737336331666434363065343930656463613837323765303737643764 33323964303132643137656563326139313665616363363562656164316237343230386130366563
64616230373964363565306136623135663730323164623439393437366233643038303363663731 64363565316136313961313334343233643438393263653234313266653734353636313039633534
63333666663831653763613632666437393438386534363533356138383231303439306235636537 38366362636363386165653166623936366132313564366138303831336462303264613034356634
37636561613463333930323565303935313839653364653533636562653364666331326663333362 64343461633435633965396165653566623934626363623664316536373235343030313661353838
33393839376262346431326236633839323234363861663963616531366538333338356339323330 36633265326338643665346363376136366531636639373236323230356335616330323165663434
32643633656339333635363964313564343432383364323833646632343133623063383339626131 63663236313036333731376533393766313735373835393834653761363532353339323262333034
38633638656232306161383961383665316638666166663038353266303233396234303263333162 36323833623962356630616535633530343864333533383664383737303363333865633062666334
37306338363434613738643361663861613963643537353831316639323831346231633736356662 65636234653366366332626236383133666635623937666333666663373666643864363231396536
66623637393165623566636437636438626634323862316662386465653437666336376632373735 63343438323436393833393430613665333261383662643636663532633833333930373664373065
30343634393133653536616366383762323933316531343864363439616139663539663736336631 35316661346332343739636238633463643762343462323939383830653836653662313263623431
66376430383436313838656337653465353736396430643334356339343533373634313136336337 62383333373939343961666466313266653563373263363134666330643536636661366635343134
37633938353336336231383531376333653838613233363265646337353936363135313030303164 34623263666164323735303633366363366433633136636633353039613262343137306366313930
31376632663165383863373332313561633836363464626633626661363936643432333365666131 63306466313031643765656133653533666435336439313333636465643836363834303234636430
31643033636434356335363439633263343831326434316435616530666563613638326231323639 39356635643664646233623464343032343463396264363136653438393838636134346235346338
37333466613934636332303738313362623364353133383037383366356333663935396566633431 62636536313963373863346135326239353738323739646338333631616261336435646333616631
30373532326236626238396666643235303739383961663466643765373932653462356636653863 66303965653935326139336539353763646537386333366465363039333633333932316238393333
65396130343236653334323031626536663965313065336338643166623434336130623434383665 63363730333935373938363762643161323964626335346433353737396261633233393033383765
36613533316438366330393364373235326266616236363662396137666338613764633361656566 33346131613934656333373263356331316634636231376662396465613732303738356461653635
38633235616139363765666632363934303234633062363130663462316462666439383736353232 33303833333630636230333165616532326534383535623536316434653066656461313133626231
30383932396462306430663839326433303834373965663466643264663436633433656663613434 31333432383931663532646539633665306363633837396366663335653864346439386162306438
66356563373662626634333265333033303930653737303434303363346331303333373933336435 37626466336232353335323835643538386431656334623664373131663934646534663763653636
39633730613738373361383732373337666262363965656232323866316661313134396266666530 62393061663862333935643437656461643037363639346437356537383264613236316666343833
31346162373463383666656535386430373465646266623431653161616533393133613131313533 65663866666362663839393039663863613934383432363037663432383065396537356636643732
39383739613939393639616435653261323230663532363234613638303831313833326233366131 66633634373164376130396432386664313263666363326666633930393233383335353032353333
39363165643531666337393661366563363131623235376665613633656162343131333637333663 36626434613433656164366462336236316663633530306232393030613330663164386236656262
30376331666661316130616163393435343535356465326133326335373333643738306331323430 35313238626639336136333065623233383963316561653937396335366637373839396136323330
33646462613065393334613833346565613964616665303933326139306230613465326433396439 31633335336431376338386637323437633865626433623034393761303866303035646234633034
64643031626663383166326630303038656530633064376339373864303438366335393064316537 64333962313838303964393031353964383962353231623039333836326431636433303761646233
63666532343164363166353036663336613433366636373437643830643732396462633635633764 32383637323162366339656663306233386431376636333833343866653939323263666339646639
63343433313062353666383135633330353431376532393430316561633334653966306439613663 64336537343231646638383862333837323566396136363332313365396261366639323062343330
31333934366161343361393438383164353965333565386262333737363535633663646665343032 32353262333538386566366239633530316135653736356635626537396432393032633365346262
30396434636435353766343065613635613364396638343966393831646236313131633131363839 65313565336664336365383664663336646161643239326664633066373132316565613733386535
38376539333131333763376161346634666137326464396432636562333538373962386239303761 30326332366439303332613238643635643566393536613238656165633861363034663136633531
37633662376633303366613962333830393430623563303734363965663865303532376134383130 64316663613361656162613362373661316639306132393535383835613762633930386334356361
34373335363664313536306465346534393834666264623261616465623962626262636332306636 37383365613033656238336361366361373435396538633930616363623263376331646663313537
39616161656334303438666432386366646336633832626237333231333833613738346631643961 62306337333132373732383564353632366331353230656466373062353766623162396539383834
39616137353738363461396635636336363335353838613938303465386131633038306130643533 32383430623165316439623937626263373864336132623163373362313236346464623132333432
38633839653937353663636630653966653432656462346237313063613338353631666439613861 65343734636631363265316431643033356433323264396333663138396663373665353536373138
30633030323165376435393965336139333133653939366533316636323032323764333834623964 65353239363161643663666435383432363338633530646162656531636230646564663938366431
37343561396131343763313334626137386534353639383935353934333738653762383736313235 66393464373466363033666636646437663833626338303635336631313631396336636661356639
33353233373133353631303238363934366339393838636266396432653361616162373963343065 35323633393935386433376663393732643963333136643464373739393161613035393863356564
36373862616164383037343538663532313363613164383264643763376564396264323134346337 66653933306236626339393134313136663035646636353235393439313939323936353661376335
37366261393436616566396431323265626334376662663964323963363262353332613662393737 34306363393833623532333237633936663038396564323137353830656337356330336361373265
65313066386237353764363435613866613435323236643436333561346536333964666562643732 33646561653630383239306630643435376339386661656666636363373764306562346535306635
39333739633232353630643333623238383461313530623435333263373562333564323464373430 63343733333064626232666361633862356338363830363932336633626564376561393938316564
66653031333763633662646631633561656262353462386538343462633533353662633065346461 34353431343665326634383935616537653334656362663136346565326636393338636435356639
37643437333265333337646631653765343036313638393638373035323534383036323039376338 30316238633666633836346565343061656537616262646134613933353833396436306234346363
31613361306332376639636562343261343865653765633130313464666230306238353135623062 66636130353836623932383865633436616131326633326139316661313831386132313138663865
31383638393064333763343139666663353531623533633033373039626564346436373439666331 37396330373533663665393538356530393661363864666665623365386565636136646633643665
38663961663032653238633036383438393465353563363439353437366266353139383766656631 35633561623564353734326635316532353062646336613662616465393931643236616236393733
65363032346433393166306131333131356339633561666134653432306661313663346566653238 66383530303739636634393834303037366437303566376664376233313664336166323833636136
38316231363933613561313936613163356337646337653033396562613564666133613336623533 38636566653439383730386332396631613638313435383766376137333632613966393565363561
63616235346262663666373239373832613835323238353039633737363030323166386230303734 63643966353062383465653538613161373835376363366134393331363863383464663163383866
36313637383430656433613236363462343466666361303933646665346366663235306333656366 35666131656238626637666138333432333563323265313366653436346462363766393065633664
34316663343962363561636166313265396363636233303830646633626663353933663266366363 63643534363563636437633065333666643036386162376561373837333738353161306364643135
30393131313361353637663864636466323436663330343534353535643430303162633730383139 63383561326465363134633562623331303963393933643434336164623738646136303635633130
37343633323965333463613434326232346639383035326234383234623238333635633036353462 33393532626637626261326266333066306638396239613665663431346631393634653263303733
38303765643539336262656338633033366534373961373835643835633461646165656663613936 65353764646530623365316264336437323334353462323030306635333533333463623835666231
32373532663861646537323638613832333631323239343865396434636132656332366335323337 65393730303436626331666332376663383263376130633332626632326534353562373635393234
31663962366162363433353832386164333337386631653538656639383936383337623764636563 64643936626163363733323134636563383261316161363738353135356663343433613539393739
30383738346236623565333466323566306138373565376334396464343265383034326436323836 64643765663837353831336337313466323566633961653137356461363362636531653738383564
39323237396339653261626638373538383464313536343365333934306262633238383939626265 33306632346265626234373334653861623233373032616666373064366437373137626230613333
66626661336462366236346632316662386336353436623562356639376230386530353438616430 65313066373439616135373236623738353636653931333462343866353564383830336562363434
63316361626265356436343031383365323839626538393735393030666338343132663565376231 33656634303136323762396532646161633461353134653135343765323166323133633835663631
39623634623833333432383739346339306434383764633635613461383262316135663461393737 62393265393134383565393030626533346561313661383731653134653862343362623832366235
38346261323831643862383139333662666339663039386534386365656632366562633139613366 61363138656466643237393330653636323262366231616164323562633365636434353135653232
33326230353161313064633539333131646436376139623966326236343937616630626335656663 36366135313866643065623865303233313564336338643433646163653866373833366462666462
66303537633965376366303463333765613131663636373137613361363066326230643837636236 37643235333836633166343437313035363564353838613734303661353564396331646432623439
37316435393538353166313933313665363936303066363933336436386139303465613665386165 63323762326263616365623233396239643136643333316133393162613237313863633832633866
39366637313436366432623863306136363633303233313165646431656136613835623236623361 33393261326134626565656462333933376161666539376261356136306530363539316166646464
32333131666630336330393737396135666163346131326232306362316166343633326664623030 35316638313435646439376431356636663561373338653261303030353737373061326232653563
62313435623162356365623664643962343334313836333537663031343736636164383836343731 64643231313334653464333331313539353264386461363732633630623932303538623839633366
62316636643361666136363364643038353330373334353663646139623362636163366666343434 66303130653162336134346566326231316561393165333161313263616335666438633161376133
66383366643261333539333862336466376639303139666134393834336639386637376461653331 65383730336636383831363636303130646563613463613433343937363639313465663262313837
35343932343835323035623034323633383663616530386139616566666635343236363739613237 61653735336561376638386261353534383330306633636361653130646435333664313337346537
38653062383837653630323563343230303862623064306361633532356532343866373662343138 65306531316436363263626236316636353630623336363764316436393662386564383065313765
33636365613331396433663364616331313663333132373934663130336335613639313762373564 33383332313866646262343163383737313661366438326630623339303136316564343962343435
63363131346365613333633736323432386339373965623964626336626637316137346535326232 30336261343166393239666232363732633936333839313036643763616466623861633034343736
36363431313166626164363663303932366134313933303135613231366330663330623831633539 39646664396531373664343662666534326164383531656363626562623439613532316237393166
39623034343134303135643538396464316163393264353533623365613130393662626530636261 30383837313261623662623036636265626162383133616331306232313838343663363134306634
35656663373030663331316133646561363565356438666533316563393433623661616630336465 66636363383537633964346665666135323437616532316130303130333232346131643962653932
61383464366165343963623734346563616539356635356161376165356235306634636138633236 36613031616234363234383262326534306633356565353566616335653566393461656465356236
66643535373931363732653764383939663762373063663839363166333761353633316232393338 35353838626532313634663864613239326262333035386463346463316466623935303164643133
33343135623365393230303266633031343065346334363534383135343865346130653236333432 31616437383837326661326236306433353938383963663234616333623761303437366364346535
64383466323365313731326563386131616338663061316330323964643166636464626537643736 37616138313830663235353265303939303061663238633464343463346465323466323039306163
35656561353961613931613036653065363861353836386231646136643639373738643539353330 32636564353532346633336135303064313932386661353561336430343036366132313433663566
32373737323332636563356131346233303037336130336137383264343438373264363161643037 64396633393233646139376563303539356135353731326634653037613662353363313633643163
30353765393661343333366432353964383636373739346439333532336364316135343233336362 64623133366439323361613662663535346562393334643838343233386666663835396565643633
36383637313733653263386330663363376135633437356566343035356239306666613035666662 30663235373364663939353933343730316165663035396361656533383537313238356263356532
64613139303566363864303036613662636266333338386430366639356338313236633531623865 66623765646333633935343835656634663435633330386231623638396438346233656334303962
63636233666338373630333733396365643337373662656131313830616435333562643139313333 39626630336139303465633937323239643132633265323636356534356561613665623238336438
31316439663633363238316231633961613137643337306135326437643534376166666364333961 39326466623761343664663363633530366130356133373666326636613065346433363331386537
38353562663062373461393736623634616663373365643630366462656639633637363436643163 64373863346565333234303138393964656335326238363266656439623838303936323265343731
64306631653835616664303031383365643632316566383832323030643831303563336163636264 33333661666235346237373964306332633863373435303666373932326330626639353864333638
30653237376534323339613030366439373930316466326261356136383131323335306334613365 33326430633263326531393761386331636365386362396137336238333632626437383239376339
66623339643234656337643837623137326537306566383537366430333139313761663361393134 62343031613735316230363736393331356464326463326534373235616435376331353339656133
61313663313139356537396439316337386132343930626161366464373162306162343863313261 32656362316438303762623163613739653532383038386462353631386361363436346235316536
32656630636461633436306162396534313131626361363266393437353535306162326434653733 37656239306137306230366266366665333336623139326539396133653836656438646464343436
35623561616132343338363534383335393939333065633462643561366333333034636363386533 30336166393565636238333761376161303266353139643237336532373938303137376463316634
39333936663939383031356534363636383332613162323133396166303665653935376630636236 64396630613834663935366336643831643966346534653463623434623162666366303563316465
31633361363236353663303338363033633133613334616264663431633335353936373963383838 65623936333734663063353537626236363465396163303162653435616137633736393864653437
32343965396438663739646166366262323133333664386563643637373761323930383633333039 64323439306131633238633639306661633666363739353465363031363565343431656563303636
64616635633937346165613962643965633033663134306261383737313466313065323666366138 32373363346164373962346265333932646130366539613566646461636634366361376439356335
32633731363662306161353636333131623662336434366432303232306164323866646639616534 66343939323131363333343631366531346539663336346136616430666438336465336530623339
31613061656137643137343261366462386533636166313965656531633237386537636166316138 36363431343833623562656438373238343262333537316465623534333335313537653930376364
33353164313366343132636263626134656265343733646465383664653266623166616333666635 35396661306636363566313037656535376636336132663236313134656336626238613534343963
38343165396233343633393963616138333138303938643732393530343032663765663036643762 33636139333761653433396664646338353130653365653036393561303665323163653933393739
35373961303537613331323538323431343934386134663466336438323462343766653936353037 61316630373464326162386331366133346163633930396564303233356161376436373434323065
62303537373038323836636464643361346337393330316532353737333732366261303761373531 39633031643539366435613032613432623065323337653665353435303964623139613065363763
32323736336536356234643266383962623832656265303035376532663762306435323262363238 39333064306564336364353565623739636232306134303965633639393465393034313366613133
31353661663563653932336532646632623832343832373263376434313066303039646234373237 37303964373464343130353731363765353463306231343163356331643534353734303865386232
32626664343334613337386539343433336335303836616162616130613635306234343536396634 34356533653666383839626133323961346331326135316338356230343838623932303462663030
61633836373937656435383639373130376637393239333137396535306263303030343565306463 65656137643933333932663739663931626564643365643261646133663632366164303864323836
36653838323631356166363234353963353234363538353763326631366438343833626564616439 31386663303736316531363530336361333461663131656335316130383636393135616430356233
32386534653133383634623330653936363364366633646566623038386562626365386163363630 39656635396230333230393931346532643565646562383361366664613737393065396232633638
62366137633739373436633963623138366361343333666564663162346562383463666237353862 39353832643736623233303735653665396662356238333333313437663465656465633937356438
37383033636563393039396535383535343364353338353731303539393638633462353230643034 30643335343030316238363961313337663765643964363262366230343632396632623063353863
62656134346566366565646666666364646633626163623938653538353165396134636534353864 33356563613365643436373466653662666165656238373130653761313936306163313639323531
31643633653463313461613935663964326135376166633166313762363831636532363333353437 39363838333238333965323534616666663063633337306234376430353366653434303237663764
30333238323066316535303233646666613034333035383830383636633165333766663364383632 35613134633636373963303363653938666639386333363737396564383335313032633465646535
62303030643239383931333533636534356635363538303236396666373731336335313762626337 31386535366364633265306537343064396238316535333765613266303531353662663961323433
66393636353038333735326366613265653539613436303864353037316366613938356132356366 65646633646538373563343435393462666635643561346331326338343861656233313537626135
36376666343532353161323965653336313161373764623339626330656139623764633836343639 64303134336630303465643934626461333361643631616366643631306565623435343838363039
61366531353433646262303662303937306562353836626163353465393835633762353039326631 37393634343062353764623264303131663135366231363764303038336335623135393634376337
62393063343865616165393039323533653165376132303564316330363434643139393337353133 30373237323330636139363830643532366330623432373336373831336330653335363930386130
33353764333338656264643233316164613038346161383364383939626536353030346534356433 33343135643666636639623836306264656662626561323361366261646166303135393236356232
65366535343565393366626531623665353130323563646166366433633030653035356334353966 38323436333730373434303334646333643830666531336365373463373433623864663333663066
33346137633237363839383233313037663438663535623561653064356538623634336135313263 64353065356362396238383030656239323538366439653833323435376431636339363033333563
33623739333339616261646664646634306534323534386665303166386431336164666663646236 30303635323837613437306662613664326261313766633831333737376166373561336335353666
36396438653535393665666664653534353562303538656462346262316338343035303930633837 30363439303039363661333130623633313663396530346633613039666365366365633236383865
38656335663365636237356632623631623161653839373933366539353733323464386330386134 37363662376464626536373261623637383463666461663037373165636136396563383938663539
32343862623133633865313136663765366364646535326339633766333930323564386339383739 64633862653963303065383866633064666464323764346666383565383964616662333339323336
66353037343837303164303430316235303131306166366136313433363137346563306133616461 36633235613465373033623766623336353434363630303730373333666362663863656363343435
36653239323333356164636665353236353835636532623562326131323439323534316366616337 32616336313633633163613732633661306262633433316136336363653038336164633736303263
35366335323164356439646336663938343366316538383838323764663163663935613364663631 62323735303762646336323966623538393963613566333232306438633431613133363631363935
32653134613636393131623165353431376265313634396239306530393665303033393439636663 39346461393535333465643463353834363138336539393765633234393133343433353763303033
37386363643737386661643638303038363662623266353963613130663735356631366530643663 30353266623238326364623338366433363737666436656562393361356335386130393033613163
38613734373864353231363363396561303238353433373065356532303732353734613335616264 31323131356639366563336239653438613630326632333734383363366665366663326536323131
66613565633535323564616261353363363839326331623365383262663263366664336361643561 34363937633934386439306238383662646130396661303434376637333330333861656438643931
37393836323062313363386562633237353266336261383865333335356434336634303231306134 64396337383537323436386632306236616130383466653162646531326665646162303634313633
33373165663638623464633464623531383664333237323164633231373163336633613232323937 32346663353136323865613531633530323866303434656566316332373033316664393462303963
65616636393663623039623536663736636664333164363036356230653963623937356238613134 39646364333661343465373938636662333163623639626233616133633961316164636565366337
39393536613834386438343163316161613739303730633765643938313662356333613031613365 61303266316364393631363062656538623433343530313232393266663431613632303736373265
63613239303065633030666430396463383032333665383434646562306139356135616432666136 38633333383639366435393138393564313861336233363061343936643235643135666534626164
38613561363662303735323031626433636632616635613664386230303537396132633337366364 39383264333861393432396563643133376561373236393466666263336537633465653561616366
39303461373636623465383863396132393565636566313730393238306130333630343365656632 63303136336231363261396164656232653835363265303532333734316530663739366162306639
66316532643762663563376331666437666538343363356562343634333861353530613733313035 38646564386233346239313664336537656232343464393361316139643861326234383165376532
64366437393036363165316438383565633864383132343035333837663235356232646130363137 38323461353361353534303733636339663439313030626663616466396662323039303932663039
33386436393533626133626636393665666233366663313163323563653131363637323739323664 33653632396163666630646263366661353264376635373636633935303330323833346236323031
35653634616562376132363761373464323466393230616232343936666437316535303436323633 64323266353434616534353161363330316230363232656638653866623635306633636166313030
333637333634306336326535393964323138 643263616638393835363334383738636138

View File

@ -10,7 +10,7 @@
- name: Create the gotify container - name: Create the gotify container
docker_container: docker_container:
name: gotify name: gotify
image: gotify/server:2.6.3 image: gotify/server:2.7.2
restart_policy: unless-stopped restart_policy: unless-stopped
recreate: true recreate: true
networks: networks:

View File

@ -10,7 +10,7 @@
- name: Create the mealie container - name: Create the mealie container
docker_container: docker_container:
name: mealie name: mealie
image: ghcr.io/mealie-recipes/mealie:v3.1.2 image: ghcr.io/mealie-recipes/mealie:v3.2.1
restart_policy: unless-stopped restart_policy: unless-stopped
networks: networks:
- name: proxy - name: proxy