<feed xmlns='http://www.w3.org/2005/Atom'>
<title>leap_platform.git/puppet/modules/site_config, branch 0.8.0rc1</title>
<subtitle>[leap_platform] 
</subtitle>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_platform.git/'/>
<entry>
<title>Disable journald in order to resolve IP logging subversion (#7863)</title>
<updated>2016-02-11T15:35:39+00:00</updated>
<author>
<name>Micah</name>
<email>micah@leap.se</email>
</author>
<published>2016-02-02T16:02:17+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_platform.git/commit/?id=b8bca2d764bbf13a92e7ea861ab510db9b18e3bb'/>
<id>b8bca2d764bbf13a92e7ea861ab510db9b18e3bb</id>
<content type='text'>
Change-Id: I9cee85c19d86dc7c8d70c4cdeb2e7426191b57a5
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I9cee85c19d86dc7c8d70c4cdeb2e7426191b57a5
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge branch 'bugfix/mxlog' into develop</title>
<updated>2016-02-03T01:33:38+00:00</updated>
<author>
<name>elijah</name>
<email>elijah@riseup.net</email>
</author>
<published>2016-02-03T01:33:38+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_platform.git/commit/?id=cf50f84d47fe20f72aebdad1fa0c077c350e1d00'/>
<id>cf50f84d47fe20f72aebdad1fa0c077c350e1d00</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] Fix bigcouch spoolfile removal</title>
<updated>2016-02-02T18:38:35+00:00</updated>
<author>
<name>varac</name>
<email>varacanero@zeromail.org</email>
</author>
<published>2016-02-01T19:51:04+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_platform.git/commit/?id=ea2955c73150dc7417b2637acb2b29a955550c29'/>
<id>ea2955c73150dc7417b2637acb2b29a955550c29</id>
<content type='text'>
- Resolves: #7641
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
- Resolves: #7641
</pre>
</div>
</content>
</entry>
<entry>
<title>[refactor] Dont duplicate Package resource override</title>
<updated>2016-02-02T18:38:35+00:00</updated>
<author>
<name>varac</name>
<email>varacanero@zeromail.org</email>
</author>
<published>2016-02-01T16:35:16+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_platform.git/commit/?id=5471630d583d21bc21ec1e6a1e17056c2bdecb23'/>
<id>5471630d583d21bc21ec1e6a1e17056c2bdecb23</id>
<content type='text'>
`site_apt` aready ensures for installing packages after Exec[update_apt]
is run, so we don't need to duplicate this in `site_config::default.pp`.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`site_apt` aready ensures for installing packages after Exec[update_apt]
is run, so we don't need to duplicate this in `site_config::default.pp`.
</pre>
</div>
</content>
</entry>
<entry>
<title>[refactor] Use Exec[apt_updated] instead of Exec[refresh_apt]</title>
<updated>2016-02-02T18:38:35+00:00</updated>
<author>
<name>varac</name>
<email>varacanero@zeromail.org</email>
</author>
<published>2016-02-01T15:53:10+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_platform.git/commit/?id=559b2ccaa71e2c5c459d7a6bea39de975f15cb1c'/>
<id>559b2ccaa71e2c5c459d7a6bea39de975f15cb1c</id>
<content type='text'>
Because this is the recommended way of depnending in the apt README.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Because this is the recommended way of depnending in the apt README.
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] Fix duplicate definition error for Class[Apt]</title>
<updated>2016-02-02T18:38:35+00:00</updated>
<author>
<name>varac</name>
<email>varacanero@zeromail.org</email>
</author>
<published>2016-02-01T12:54:18+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_platform.git/commit/?id=65d1d6da0dc76803f26668e92acda11cfc4bbf16'/>
<id>65d1d6da0dc76803f26668e92acda11cfc4bbf16</id>
<content type='text'>
We need to include class `site_config::default` in class
`site_config::slow` so we don't get this duplicate definition:

    - [local1.bitmask.local] Error: Duplicate declaration: Class[Apt] is
      already declared; cannot redeclare at
       /srv/leap/puppet/modules/site_apt/manifests/init.pp:29 on node
       local1.bitmask.local

To be honest, i didn't figuered out the real cause of this, but it works
with this.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
We need to include class `site_config::default` in class
`site_config::slow` so we don't get this duplicate definition:

    - [local1.bitmask.local] Error: Duplicate declaration: Class[Apt] is
      already declared; cannot redeclare at
       /srv/leap/puppet/modules/site_apt/manifests/init.pp:29 on node
       local1.bitmask.local

To be honest, i didn't figuered out the real cause of this, but it works
with this.
</pre>
</div>
</content>
</entry>
<entry>
<title>[refactor] Remove atomic apt package dependecy</title>
<updated>2016-02-02T18:38:35+00:00</updated>
<author>
<name>varac</name>
<email>varacanero@zeromail.org</email>
</author>
<published>2016-02-01T12:24:53+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_platform.git/commit/?id=5d4642e94c8a1a460988fe11419556753ce0f1aa'/>
<id>5d4642e94c8a1a460988fe11419556753ce0f1aa</id>
<content type='text'>
`site_config::default.pp` takes care the all packages are
installed before `Exec['refresh_apt']`, so we don't need to
add it here for a single package.
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
`site_config::default.pp` takes care the all packages are
installed before `Exec['refresh_apt']`, so we don't need to
add it here for a single package.
</pre>
</div>
</content>
</entry>
<entry>
<title>finally fix leap-mx logging, for the last time, hopefully.</title>
<updated>2016-02-02T18:21:49+00:00</updated>
<author>
<name>elijah</name>
<email>elijah@riseup.net</email>
</author>
<published>2016-02-02T18:21:49+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_platform.git/commit/?id=45e81ca4abc81600998f11a5e74a565f545e6c84'/>
<id>45e81ca4abc81600998f11a5e74a565f545e6c84</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>[feat] Fix fast deploy using 'leap deploy --fast'</title>
<updated>2016-01-28T22:52:41+00:00</updated>
<author>
<name>varac</name>
<email>varacanero@zeromail.org</email>
</author>
<published>2016-01-27T23:04:10+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_platform.git/commit/?id=a8343508a6ced1dcbca621ad4c6f3ac39676326b'/>
<id>a8343508a6ced1dcbca621ad4c6f3ac39676326b</id>
<content type='text'>
This worked before, but somehow stopped working.

We need to include 'site_config::slow' top-level scope instead
of including it in 'site_config::default', because otherwise it
would get tagged with 'leap_base', and would be included always.

This way 'site_config::slow' gets included by default, but can be
excluded by using 'leap deploy --fast'.
See https://leap.se/en/docs/platform/details/under-the-hood#tags

- Resolves: #7844
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This worked before, but somehow stopped working.

We need to include 'site_config::slow' top-level scope instead
of including it in 'site_config::default', because otherwise it
would get tagged with 'leap_base', and would be included always.

This way 'site_config::slow' gets included by default, but can be
excluded by using 'leap deploy --fast'.
See https://leap.se/en/docs/platform/details/under-the-hood#tags

- Resolves: #7844
</pre>
</div>
</content>
</entry>
<entry>
<title>[bug] Fix removing of bigcouch logwatch spoolfiles</title>
<updated>2016-01-28T20:39:40+00:00</updated>
<author>
<name>varac</name>
<email>varacanero@zeromail.org</email>
</author>
<published>2016-01-28T10:12:59+00:00</published>
<link rel='alternate' type='text/html' href='https://leap.se/git/leap_platform.git/commit/?id=54bd11793c13140651d908db7f88d550712ee85a'/>
<id>54bd11793c13140651d908db7f88d550712ee85a</id>
<content type='text'>
The problem was that puppet tried to remove them on the couch node,
but they need to get removed on monitor node.

- Resolves: #7641
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The problem was that puppet tried to remove them on the couch node,
but they need to get removed on monitor node.

- Resolves: #7641
</pre>
</div>
</content>
</entry>
</feed>
