Search
1000 results for “ansible”
-
Leistungsnachweis / Benotung von Studis durchautomatisieren?
Via #ansible #configurationdrift bei 30 #iaas -Instanzen transparent machen...why not?
Mein credo wird immer sein: alles weg automatisieren, am liebsten mich selbst
-
Generar un video de la salida de comandos de terminal usando VHS para la charla Ansible Tools en Ansible BA Meetup
#Ansible #AnsibleTools #Blog #Design #Terminal #VHS #Video
https://osiux.com/2023-03-30-generar-video-de-la-ejecucion-de-comandos-usando-vhs.html
-
-
Automation and configuration management are not just for comfort. The gains are security, auditability and operational freedom.
#ansible #role #gitea #nginx #postgresql #iac #devops
http://tomsitcafe.com/2026/02/27/gitea-ansible-installer-role/
-
Variables are not passive. Their shape defines your power. Ghost Templates turn data into action.
https://deadswitch.tomsitcafe.com/2025/09/ghost-templates.html
-
Variables are not passive. Their shape defines your power. Ghost Templates turn data into action.
https://deadswitch.tomsitcafe.com/2025/09/ghost-templates.html
-
Variables are not passive. Their shape defines your power. Ghost Templates turn data into action.
https://deadswitch.tomsitcafe.com/2025/09/ghost-templates.html
-
Ansible and YunoHost are kind of an iffy combination.
YunoHost is based on a "continuous integration" model. So each time you run it, it tries to get the most up-to-date versions of the software. Sometimes this fixes problems, but other times, things break. There isn't a clean "release" or "version" schedule to stick to.
Which is in conflict with the notion of "repeatable installation" that motivated using a configuration management system like Ansible. Which is really closer to what I feel like I need as a DIY-maintainer.
The continuous-integration approach requires a larger risk of unpredictable demand for IT work. Any upgrade can result in breakage that is hard to recover from.
YunoHost provides a through-the-web GUI approach to managing the configuration, which eases the ongoing burden of the work, but it obviously can't eliminate it -- and apps will occasionally break.
And for my needs, YunoHost doesn't cover all the configuration: I still need to get in and make changes to configuration files. Ansible is handy for doing that in a predictable way -- so long as the configuration files don't change much.
I'm not sure there's a solution for this, other than acknowledging that IT work is an ongoing project expense: either in my time, or in money, if I were to pay someone else to do it.
#FilmFreedom #VirtualStudio #Infrastructure #Ansible #YunoHost -
Ansible and YunoHost are kind of an iffy combination.
YunoHost is based on a "continuous integration" model. So each time you run it, it tries to get the most up-to-date versions of the software. Sometimes this fixes problems, but other times, things break. There isn't a clean "release" or "version" schedule to stick to.
Which is in conflict with the notion of "repeatable installation" that motivated using a configuration management system like Ansible. Which is really closer to what I feel like I need as a DIY-maintainer.
The continuous-integration approach requires a larger risk of unpredictable demand for IT work. Any upgrade can result in breakage that is hard to recover from.
YunoHost provides a through-the-web GUI approach to managing the configuration, which eases the ongoing burden of the work, but it obviously can't eliminate it -- and apps will occasionally break.
And for my needs, YunoHost doesn't cover all the configuration: I still need to get in and make changes to configuration files. Ansible is handy for doing that in a predictable way -- so long as the configuration files don't change much.
I'm not sure there's a solution for this, other than acknowledging that IT work is an ongoing project expense: either in my time, or in money, if I were to pay someone else to do it.
#FilmFreedom #VirtualStudio #Infrastructure #Ansible #YunoHost -
Ansible and YunoHost are kind of an iffy combination.
YunoHost is based on a "continuous integration" model. So each time you run it, it tries to get the most up-to-date versions of the software. Sometimes this fixes problems, but other times, things break. There isn't a clean "release" or "version" schedule to stick to.
Which is in conflict with the notion of "repeatable installation" that motivated using a configuration management system like Ansible. Which is really closer to what I feel like I need as a DIY-maintainer.
The continuous-integration approach requires a larger risk of unpredictable demand for IT work. Any upgrade can result in breakage that is hard to recover from.
YunoHost provides a through-the-web GUI approach to managing the configuration, which eases the ongoing burden of the work, but it obviously can't eliminate it -- and apps will occasionally break.
And for my needs, YunoHost doesn't cover all the configuration: I still need to get in and make changes to configuration files. Ansible is handy for doing that in a predictable way -- so long as the configuration files don't change much.
I'm not sure there's a solution for this, other than acknowledging that IT work is an ongoing project expense: either in my time, or in money, if I were to pay someone else to do it.
#FilmFreedom #VirtualStudio #Infrastructure #Ansible #YunoHost -
Ansible and YunoHost are kind of an iffy combination.
YunoHost is based on a "continuous integration" model. So each time you run it, it tries to get the most up-to-date versions of the software. Sometimes this fixes problems, but other times, things break. There isn't a clean "release" or "version" schedule to stick to.
Which is in conflict with the notion of "repeatable installation" that motivated using a configuration management system like Ansible. Which is really closer to what I feel like I need as a DIY-maintainer.
The continuous-integration approach requires a larger risk of unpredictable demand for IT work. Any upgrade can result in breakage that is hard to recover from.
YunoHost provides a through-the-web GUI approach to managing the configuration, which eases the ongoing burden of the work, but it obviously can't eliminate it -- and apps will occasionally break.
And for my needs, YunoHost doesn't cover all the configuration: I still need to get in and make changes to configuration files. Ansible is handy for doing that in a predictable way -- so long as the configuration files don't change much.
I'm not sure there's a solution for this, other than acknowledging that IT work is an ongoing project expense: either in my time, or in money, if I were to pay someone else to do it.
#FilmFreedom #VirtualStudio #Infrastructure #Ansible #YunoHost -
Mám tady základ role pro ansible https://github.com/Vitexus/mastodon_server a uvítal bych spolupráci.
Cílem je, aby to umělo mastodon server nainstalovat, zkonfigurovat a zakutalizovat.
-
Fully automated the patching of my linux servers with #Ansible using a workflow. The Job runs scheduled every day:
- Publishing a new Content-View version on Satellite and promoting it
- Patching all inventory hosts to the latest state
- Rebooting systems, if necessaryAnsible Playbook to patch systems:
- name: Patch all systems and reboot if required
hosts: "{{ host }}"
gather_facts: true
become: truetasks:
- name: Ensure all updates are applied
ansible.builtin.package:
update_cache: true
name: "*"
state: latest
update_only: true- name: Check to see if update is required
ansible.builtin.command: dnf needs-restarting -r
register: result
changed_when: false
failed_when: result.rc not in [0, 1]
ignore_errors: true- name: Reboot server if needed
ansible.builtin.reboot:
when: result.rc | int == 1#linux #maintanance #patch #ansible #rhel #sysadmin #homelab
-
Today will be fun. I'll define a colorscheme and set up configs for kitty, hyprland, waybar, neovim, tmux and fish for my #ansible #playbook. Basically the whole #tilingwindowmanager setup, but reproducible. Also thinking about trying #arch again. Could automate the entire installation and configuration using ansible.
-
Neue Installationsanleitung im Wiki und #Ansible Skript für cal.com bei #Hostsharing: cal.com ist eine Open Source Alternative zu #calendly, um #Terminvereinbarungen mit Beraterinnen oder Sachbearbeitern zu vereinfachen.
https://wiki.hostsharing.net/index.php?title=Cal.com_installieren
https://codeberg.org/tpokorra/hs.ansible/src/branch/main/playbooks/cal.com -
@aaronmamparo I have an #ansible playbook that manages my nodes. It's not 100% perfect but it does all the things I need to keep them running smoothly. The #Kubernetes stuff I leave unautomated for educational purposes (where I will experiment with #Helm, #Carvel tooling, etc).
-
Today I wrote an #Ansible module that knows how to parse and update #CUPS configuration files because I needed one and couldn't find one already written by somebody else. Share and enjoy!
#Linux #FOSS #OpenPrinting #ConfigurationAsCode
https://blog.kamens.us/2024/12/28/foss-of-the-day-ansible-module-for-editing-cups-configuration-files/ -
Today I wrote an #Ansible module that knows how to parse and update #CUPS configuration files because I needed one and couldn't find one already written by somebody else. Share and enjoy!
#Linux #FOSS #OpenPrinting #ConfigurationAsCode
https://blog.kamens.us/2024/12/28/foss-of-the-day-ansible-module-for-editing-cups-configuration-files/ -
Today I wrote an #Ansible module that knows how to parse and update #CUPS configuration files because I needed one and couldn't find one already written by somebody else. Share and enjoy!
#Linux #FOSS #OpenPrinting #ConfigurationAsCode
https://blog.kamens.us/2024/12/28/foss-of-the-day-ansible-module-for-editing-cups-configuration-files/ -
Today I wrote an #Ansible module that knows how to parse and update #CUPS configuration files because I needed one and couldn't find one already written by somebody else. Share and enjoy!
#Linux #FOSS #OpenPrinting #ConfigurationAsCode
https://blog.kamens.us/2024/12/28/foss-of-the-day-ansible-module-for-editing-cups-configuration-files/ -
@amadeus sounds good. Have you checked out #Ansible? #configurationascode
-
@amadeus sounds good. Have you checked out #Ansible? #configurationascode
-
@amadeus sounds good. Have you checked out #Ansible? #configurationascode
-
@amadeus sounds good. Have you checked out #Ansible? #configurationascode
-
The ProLUG Big Book of Labs by Scott Champine is free with a Leanpub Reader membership! Or you can buy it for $20.00! https://leanpub.com/theprolugbigbookoflabs #SystemsEngineering #Ansible
-
The ProLUG Big Book of Labs by Scott Champine is free with a Leanpub Reader membership! Or you can buy it for $20.00! https://leanpub.com/theprolugbigbookoflabs #SystemsEngineering #Ansible
-
The ProLUG Big Book of Labs by Scott Champine is free with a Leanpub Reader membership! Or you can buy it for $20.00! https://leanpub.com/theprolugbigbookoflabs #SystemsEngineering #Ansible
-
The ProLUG Big Book of Labs by Scott Champine is free with a Leanpub Reader membership! Or you can buy it for $20.00! https://leanpub.com/theprolugbigbookoflabs #SystemsEngineering #Ansible