<feed xmlns='http://www.w3.org/2005/Atom'>
<title>propellor/src/Propellor/Property/HostingProvider/CloudAtCost.hs, branch master</title>
<subtitle>gnusosa's centralized propellor repository for hosts spin-up.
</subtitle>
<id>https://git.gnusosa.net/propellor/atom?h=master</id>
<link rel='self' href='https://git.gnusosa.net/propellor/atom?h=master'/>
<link rel='alternate' type='text/html' href='https://git.gnusosa.net/propellor/'/>
<updated>2016-03-27T01:38:39Z</updated>
<entry>
<title>ported docker</title>
<updated>2016-03-27T01:38:39Z</updated>
<author>
<name>Joey Hess</name>
<email>joeyh@joeyh.name</email>
</author>
<published>2016-03-27T01:38:39Z</published>
<link rel='alternate' type='text/html' href='https://git.gnusosa.net/propellor/commit/?id=46fc5467e633a9c1f149cb0cd7ee03af1e9e0aa1'/>
<id>urn:sha1:46fc5467e633a9c1f149cb0cd7ee03af1e9e0aa1</id>
<content type='text'>
Also, implemented modifyHostProps to add properties to an existing host.
Using it bypasses some type safety. Its use in docker is safe though.

But, in Conductor, the use of it was not really safe, because it was used
with a DebianLike property. Fixed that by making Ssh.installed
target all unix's, although it will fail on non-DebianLike ones.
</content>
</entry>
<entry>
<title>shell script copied into bin dir by their provisioning script</title>
<updated>2015-12-31T03:16:02Z</updated>
<author>
<name>Joey Hess</name>
<email>joeyh@joeyh.name</email>
</author>
<published>2015-12-31T03:16:02Z</published>
<link rel='alternate' type='text/html' href='https://git.gnusosa.net/propellor/commit/?id=d26de1e5e07d88f188c52f73b9f1b4d0a405cee0'/>
<id>urn:sha1:d26de1e5e07d88f188c52f73b9f1b4d0a405cee0</id>
<content type='text'>
</content>
</entry>
<entry>
<title>UncheckedProperty for cmdProperty et al</title>
<updated>2015-12-05T21:53:16Z</updated>
<author>
<name>Joey Hess</name>
<email>joeyh@joeyh.name</email>
</author>
<published>2015-12-05T21:52:43Z</published>
<link rel='alternate' type='text/html' href='https://git.gnusosa.net/propellor/commit/?id=12548bae3d8feecce6a322162d91b827289ae824'/>
<id>urn:sha1:12548bae3d8feecce6a322162d91b827289ae824</id>
<content type='text'>
* Properties that run an arbitrary command, such as cmdProperty
  and scriptProperty are converted to use UncheckedProperty, since
  they cannot tell on their own if the command truely made a change or not.
  (API Change)
  Transition guide:
  - When GHC complains about an UncheckedProperty, add:
  	`assume` MadeChange
  - Since these properties used to always return MadeChange, that
    change is always safe to make.
  - Or, if you know that the command should modifiy a file, use:
  	`changesFile` filename
* A few properties have had their Result improved, for example
  Apt.buldDep and Apt.autoRemove now check if a change was made or not.
</content>
</entry>
<entry>
<title>propellor spin</title>
<updated>2015-10-10T18:45:00Z</updated>
<author>
<name>Joey Hess</name>
<email>joeyh@joeyh.name</email>
</author>
<published>2015-10-10T18:45:00Z</published>
<link rel='alternate' type='text/html' href='https://git.gnusosa.net/propellor/commit/?id=28fe270223ed56ef8e7fd867573b5ba6a5a221c7'/>
<id>urn:sha1:28fe270223ed56ef8e7fd867573b5ba6a5a221c7</id>
<content type='text'>
</content>
</entry>
<entry>
<title>API change: Added User and Group newtypes, and Properties that used to use the type UserName = String were changed to use them.</title>
<updated>2015-04-22T17:04:39Z</updated>
<author>
<name>Joey Hess</name>
<email>joeyh@joeyh.name</email>
</author>
<published>2015-04-22T17:04:39Z</published>
<link rel='alternate' type='text/html' href='https://git.gnusosa.net/propellor/commit/?id=f35ef9d6975710f2d77c2ea708c66500861d92d1'/>
<id>urn:sha1:f35ef9d6975710f2d77c2ea708c66500861d92d1</id>
<content type='text'>
Note that UserName is kept and PrivData still uses it in its sum type.
This is to avoid breaking PrivData serialization.
</content>
</entry>
<entry>
<title>GADT properties seem to work (untested)</title>
<updated>2015-01-25T02:38:51Z</updated>
<author>
<name>Joey Hess</name>
<email>joeyh@joeyh.name</email>
</author>
<published>2015-01-25T02:38:10Z</published>
<link rel='alternate' type='text/html' href='https://git.gnusosa.net/propellor/commit/?id=0ee04ecc43e047b00437fb660e71f7dd67dd3afc'/>
<id>urn:sha1:0ee04ecc43e047b00437fb660e71f7dd67dd3afc</id>
<content type='text'>
* Property has been converted to a GADT, and will be Property NoInfo
  or Property HasInfo.
  This was done to make sure that ensureProperty is only used on
  properties that do not have Info.
  Transition guide:
  - Change all "Property" to "Property NoInfo" or "Property WithInfo"
    (The compiler can tell you if you got it wrong!)
  - To construct a RevertableProperty, it is useful to use the new
    (&lt;!&gt;) operator
  - Constructing a list of properties can be problimatic, since
    Property NoInto and Property WithInfo are different types and cannot
    appear in the same list. To deal with this, "props" has been added,
    and can built up a list of properties of different types,
    using the same (&amp;) and (!) operators that are used to build
    up a host's properties.
</content>
</entry>
<entry>
<title>cleanup</title>
<updated>2015-01-04T22:12:19Z</updated>
<author>
<name>Joey Hess</name>
<email>joeyh@joeyh.name</email>
</author>
<published>2015-01-04T22:12:19Z</published>
<link rel='alternate' type='text/html' href='https://git.gnusosa.net/propellor/commit/?id=93e89c720065b6b1acdb442487a3d98d92527752'/>
<id>urn:sha1:93e89c720065b6b1acdb442487a3d98d92527752</id>
<content type='text'>
</content>
</entry>
<entry>
<title>randomHostKeys is removed from CloudAtCost.deCruft.</title>
<updated>2015-01-04T21:15:59Z</updated>
<author>
<name>Joey Hess</name>
<email>joeyh@joeyh.name</email>
</author>
<published>2015-01-04T21:15:29Z</published>
<link rel='alternate' type='text/html' href='https://git.gnusosa.net/propellor/commit/?id=ab8ff9a00e76d3cc395136d3c676286aae28eb19'/>
<id>urn:sha1:ab8ff9a00e76d3cc395136d3c676286aae28eb19</id>
<content type='text'>
</content>
</entry>
<entry>
<title>more cruft from new image</title>
<updated>2015-01-01T19:15:44Z</updated>
<author>
<name>Joey Hess</name>
<email>joeyh@joeyh.name</email>
</author>
<published>2015-01-01T19:15:44Z</published>
<link rel='alternate' type='text/html' href='https://git.gnusosa.net/propellor/commit/?id=858ded043b9161b8e1c69557c8acdf3b09ebc391'/>
<id>urn:sha1:858ded043b9161b8e1c69557c8acdf3b09ebc391</id>
<content type='text'>
</content>
</entry>
<entry>
<title>propellor spin</title>
<updated>2014-05-23T16:30:25Z</updated>
<author>
<name>Joey Hess</name>
<email>joey@kitenet.net</email>
</author>
<published>2014-05-23T16:30:25Z</published>
<link rel='alternate' type='text/html' href='https://git.gnusosa.net/propellor/commit/?id=0ec565a590e0b5e70af4f4f922925e5b0b718376'/>
<id>urn:sha1:0ec565a590e0b5e70af4f4f922925e5b0b718376</id>
<content type='text'>
</content>
</entry>
</feed>
