<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	
	xmlns:georss="http://www.georss.org/georss"
	xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#"
	>

<channel>
	<title>Roots &#8211; In The Digital</title>
	<atom:link href="https://inthedigital.co.uk/category/wordpress/wordpress-development/roots/feed/" rel="self" type="application/rss+xml" />
	<link>https://inthedigital.co.uk</link>
	<description>Web Design, Development and Digital Marketing</description>
	<lastBuildDate>Fri, 28 Aug 2020 17:10:43 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	

<image>
	<url>https://i0.wp.com/inthedigital.co.uk/wp-content/uploads/2018/10/cropped-in-the-digital-icon-padded.png?fit=32%2C32&#038;ssl=1</url>
	<title>Roots &#8211; In The Digital</title>
	<link>https://inthedigital.co.uk</link>
	<width>32</width>
	<height>32</height>
</image> 
<site xmlns="com-wordpress:feed-additions:1">153467252</site>	<item>
		<title>How to fix ansible/vagrant ERROR! the role ‘swapfile’ was not found</title>
		<link>https://inthedigital.co.uk/how-to-fix-ansible-vagrant-error-the-role-swapfile-was-not-found/</link>
		
		<dc:creator><![CDATA[Mervyn Booth]]></dc:creator>
		<pubDate>Tue, 21 Aug 2018 20:25:41 +0000</pubDate>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[Roots]]></category>
		<category><![CDATA[WordPress development]]></category>
		<guid isPermaLink="false">https://inthedigital.co.uk/?p=671</guid>

					<description><![CDATA[This article provides a simple fix for the ansible error, &#8220;sorry, tersmitten.swapfile was not found&#8221;, by updating 1 (maybe 2?) .yml config file. If you have encountered the above error, or &#8220;ERROR! the role ‘swapfile’ was not found&#8221;, then chances are you are using a dependency that is no longer supported (or more precisely, it [&#8230;]]]></description>
										<content:encoded><![CDATA[<p class="lead">This article provides a simple fix for the ansible error, <strong>&#8220;sorry, tersmitten.swapfile was not found&#8221;</strong>, by updating 1 (maybe 2?) <code>.yml</code> config file.</p>
<p>If you have encountered the above error, or <strong>&#8220;ERROR! the role ‘swapfile’ was not found&#8221;</strong>, then chances are you are using a dependency that is no longer supported (or more precisely, it looks like the github account owner has changed their username, from <strong>tersmitten</strong> to <strong>oefenweb</strong>). To fix the error simply update the reference to this resource in your config files. Here&#8217;s what I did:</p>
<p>In <code> trellis/requirements.yml</code>, change <code>tersmitten</code> to <code>oefenweb</code> and bump the version to <code>v2.0.7</code>:</p>
<pre><code class="lang-ini">- name: swapfile
  src: oefenweb.swapfile
  version: v2.0.7
</code></pre>
<p>If you are still encountering errors, remove <code>swapfile_file: /swapfile,</code> from the swapfile role, in <code>server.yml</code>. Change this:</p>
<pre><code class="lang-ini">  - { role: swapfile, swapfile_size: 1GB, swapfile_file: /swapfile, tags: [swapfile] }</code></pre>
<p>To this:</p>
<pre><code class="lang-ini">  - { role: swapfile, swapfile_size: 1GB, tags: [swapfile] }</code></pre>
<p>Then run <code class="lang-shell">$ vagrant provision</code> again.</p>
<p>That&#8217;s it. Hopefully this will save you the hour that it took me resolve this error.</p>
]]></content:encoded>
					
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">671</post-id>	</item>
	</channel>
</rss>
