<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Entraide Ubuntu]]></title><description><![CDATA[Besoin d&#x27;aide pour utiliser Ubuntu, la distribution de choix du G.U.L.L. Haute-Marne ? Posez vos question, aidez les autres, centralisez les recherches !]]></description><link>https://forum.revol-asso.fr/forum/category/1</link><generator>RSS for Node</generator><lastBuildDate>Fri, 10 Apr 2026 22:22:47 GMT</lastBuildDate><atom:link href="https://forum.revol-asso.fr/forum/category/1.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 01 Jul 2025 07:24:33 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[[script] Installation de la dernière version de Rustdesk depuis Github]]></title><description><![CDATA[Le même pour Ansible
---
#
# Install ruskdesk on Debian / Ubuntu / Mint machines
#
# invoque with :
# ansible-playbook -i admin.yaml playbooks/thinkpads/070-programs_rustdesk.yaml
#
# 


- name: Install ruskdesk
  
  hosts: thinkpads
  
  become: yes

  vars:
    target_file_path: "/home/{{ target_user }}/Téléchargements/"

  tasks:

    - name: Uninstall previous versions
      apt:
        name: rustdesk
        state: absent

    - name: check latest rustdesk
      uri:
        url: https://api.github.com/repos/rustdesk/rustdesk/releases/latest
        return_content: true

      register: rustdesk_latest

    - name: "Getting rustdesk {{ rustdesk_latest.json.tag_name }} infos"
      loop: "{{ rustdesk_latest.json.assets }}"
      when: "'-x86_64.deb' in item.name"
      set_fact:
        rustdesk_latest_deb_local_path: "{{target_file_path + item.name }}"
        rustdesk_latest_deb_url: "{{ item.browser_download_url }}"

    - name: "print file local path"
      debug:
        var: rustdesk_latest_deb_local_path

    - name: "print file url"
      debug:
        var: rustdesk_latest_deb_url

    - name : "Download deb"
      get_url:
        url: "{{ rustdesk_latest_deb_url }}"
        dest: "{{ target_file_path }}"
        owner: "{{ target_user }}"
        group: "{{ target_user }}"
      
    - name: Install rustdesk .deb package
      apt:
        deb: "{{ rustdesk_latest_deb_local_path }}"
        state: present

    - name: remove deb archive
      file:
        path: "{{ rustdesk_latest_deb_local_path }}"
        state: absent

    - name : remove rustdesk service autostart
      file: 
        path: /etc/systemd/system/multi-user.target.wants/rustdesk.service
        state: absent

]]></description><link>https://forum.revol-asso.fr/forum/topic/52/script-installation-de-la-dernière-version-de-rustdesk-depuis-github</link><guid isPermaLink="true">https://forum.revol-asso.fr/forum/topic/52/script-installation-de-la-dernière-version-de-rustdesk-depuis-github</guid><dc:creator><![CDATA[DaJa]]></dc:creator><pubDate>Tue, 01 Jul 2025 07:24:33 GMT</pubDate></item><item><title><![CDATA[Erreur lors du montage d&#x27;une partition NTFS]]></title><description><![CDATA[Au top, merci 
]]></description><link>https://forum.revol-asso.fr/forum/topic/20/erreur-lors-du-montage-d-une-partition-ntfs</link><guid isPermaLink="true">https://forum.revol-asso.fr/forum/topic/20/erreur-lors-du-montage-d-une-partition-ntfs</guid><dc:creator><![CDATA[Kainou]]></dc:creator><pubDate>Tue, 29 Apr 2025 21:29:04 GMT</pubDate></item></channel></rss>