<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:content="http://purl.org/rss/1.0/modules/content/"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:atom="http://www.w3.org/2005/Atom">
    <channel>
        <title>script software — LowEndSpirit</title>
        <link>https://lowendspirit.com/index.php?p=/</link>
        <pubDate>Thu, 04 Jun 2026 06:04:47 +0000</pubDate>
        <language>en</language>
            <description>script software — LowEndSpirit</description>
    <atom:link href="https://lowendspirit.com/index.php?p=/discussions/tagged/script-software/feed.rss" rel="self" type="application/rss+xml"/>
    <item>
        <title>a simple ansible script to pull updates from git{hub/lab}</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/6531/a-simple-ansible-script-to-pull-updates-from-git-hub-lab</link>
        <pubDate>Tue, 26 Sep 2023 08:38:05 +0000</pubDate>
        <category>Technical</category>
        <dc:creator>cloudpap</dc:creator>
        <guid isPermaLink="false">6531@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>I needed to pull some updates from a script saved in gitlab and deploy it on 36 servers! Well, ansible came to my rescue and below, is the simple script i created to help me with the task.</p>

<p>The script pulls updates from a private repo in gitlab. It will prompt the user for gitlab credentials once then proceed to deploy.</p>

<p>Hope it helps someone!</p>

<pre><code>---
- hosts: my-servers
  remote_user: ubuntu
  become: yes
  become_method: sudo

  vars_prompt: 
  - name: "githubuser" 
    prompt: "Enter your github username" 
    private: no 
  - name: "githubpassword" 
    prompt: "Enter your github password" 
    private: yes

  tasks:
  - name: Pull updates from gitlab
    git: 
      repo: "https://{{ githubuser | urlencode }}:{{ githubpassword | urlencode }}@gitlab.com/gitlabuser/scripts.git"
      dest: /home/ubuntu/scripts
      update: yes
      version: main 
</code></pre>
]]>
        </description>
    </item>
    <item>
        <title>Script that allows me to run a site that functions like a letter writing wizard</title>
        <link>https://lowendspirit.com/index.php?p=/discussion/779/script-that-allows-me-to-run-a-site-that-functions-like-a-letter-writing-wizard</link>
        <pubDate>Thu, 12 Mar 2020 19:59:23 +0000</pubDate>
        <category>General</category>
        <dc:creator>lowenduser</dc:creator>
        <guid isPermaLink="false">779@/index.php?p=/discussions</guid>
        <description><![CDATA[<p>Does anyone have any suggestions for a script that would allow me to set up a letter writing wizard for the general public to use?<br />
For example:<br />
1) The member of the public receives a speeding ticket.<br />
2) They come to the page and enter information in textboxes about what the ticket says and their personal information<br />
3) They answer some checkbox questions about the circumstances it was issued.<br />
4) The wizard then creates a letter customised with their personal information and some stock arguments based on the checkboxes selected.</p>

<p>I'm not creating a speeding ticket avoiders site, but it's an analogy that everyone would be familiar with!</p>
]]>
        </description>
    </item>
   </channel>
</rss>
