<feed xmlns='http://www.w3.org/2005/Atom'>
<title>linux/meta-cloud-services.git/meta-openstack/recipes-dbs, branch styhead</title>
<subtitle>Mirror of git.yoctoproject.org/meta-cloud-services.git</subtitle>
<id>https://git.enea.com/cgit/linux/meta-cloud-services.git/atom?h=styhead</id>
<link rel='self' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/atom?h=styhead'/>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/'/>
<updated>2021-08-01T03:49:54+00:00</updated>
<entry>
<title>global: overrides conversion</title>
<updated>2021-08-01T03:49:54+00:00</updated>
<author>
<name>Bruce Ashfield</name>
<email>bruce.ashfield@gmail.com</email>
</author>
<published>2021-08-01T03:31:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=0cffcd09a44b2a58452a5bb13714bfc47d6546bf'/>
<id>urn:sha1:0cffcd09a44b2a58452a5bb13714bfc47d6546bf</id>
<content type='text'>
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@gmail.com&gt;
</content>
</entry>
<entry>
<title>postgresql: Fix install error on non existent file</title>
<updated>2020-06-02T02:31:41+00:00</updated>
<author>
<name>Babak Sarashki</name>
<email>babak.sarashki@windriver.com</email>
</author>
<published>2020-05-29T19:41:29+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=8516070112019bd7b3a5c41eb55a042808a13089'/>
<id>urn:sha1:8516070112019bd7b3a5c41eb55a042808a13089</id>
<content type='text'>
Commit 103939fec ("postgresql: Allow successful run of postgresql-setup")
renamed .bash_profile to .profile. This commit reflects the file rename.

Signed-off-by: Babak Sarashki &lt;babak.sarashki@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@gmail.com&gt;
</content>
</entry>
<entry>
<title>postgresql: Fix issue where init script is not found.</title>
<updated>2018-11-08T19:53:34+00:00</updated>
<author>
<name>Jeremy Puhlman</name>
<email>jpuhlman@mvista.com</email>
</author>
<published>2018-11-06T21:58:21+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=5dec08769e026980e3b5d3217dbbe2ebd87bf33c'/>
<id>urn:sha1:5dec08769e026980e3b5d3217dbbe2ebd87bf33c</id>
<content type='text'>
layers/meta-cloud-services/meta-openstack/recipes-dbs/postgresql/defaultpkgname/

Something changed with the evaluation of :=, such that PN evaluates to defaultpkgname, thus
the initscript is not found. Just set it to the correct name.

Signed-off-by: Jeremy Puhlman &lt;jpuhlman@mvista.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>postgresql: make append version independent</title>
<updated>2018-10-11T18:46:35+00:00</updated>
<author>
<name>Mingli Yu</name>
<email>Mingli.Yu@windriver.com</email>
</author>
<published>2018-10-11T03:50:19+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=04b999aa9136ba90129e6679d232fd707e71f337'/>
<id>urn:sha1:04b999aa9136ba90129e6679d232fd707e71f337</id>
<content type='text'>
Make bbappend version independent and only
effective when the openstack distro enabled.

Signed-off-by: Mingli Yu &lt;Mingli.Yu@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>postgresql: don't attempt to start the DB before we setup the DB</title>
<updated>2018-04-04T03:23:43+00:00</updated>
<author>
<name>Mark Asselstine</name>
<email>mark.asselstine@windriver.com</email>
</author>
<published>2018-03-29T19:29:13+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=8aa49d991123a954b404686cead6b58dc6de9242'/>
<id>urn:sha1:8aa49d991123a954b404686cead6b58dc6de9242</id>
<content type='text'>
When we boot the first time the postgresql service will [FAIL] and
the following error is reported:

pg_ctl[288]: pg_ctl: directory "/etc/postgresql/data" does not exist

This is a result of the service being started before a call to
postgresql's initdb is made on the PGDATA directory, usually made by
the package's default 'postgresql-setup' or our 'postgresql-init'
scripts.

We split our 'postgresql-init' script into two, the first part which
does the 'initdb' can be executed as part of the postgresql.service
'ExecStartPre' allowing the postgresql.service to not fail. The
remainder of 'postgresql-init' script is executed as before, via the
postgresql-init.service on first boot.

This change also fixes some of the first boot startup races that was
preventing some of the openstack '*-init' services which do DB
configuration for openstack components from executing correctly.

Signed-off-by: Mark Asselstine &lt;mark.asselstine@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>postgresql: update all instances of PGDATA</title>
<updated>2018-04-04T03:23:43+00:00</updated>
<author>
<name>Mark Asselstine</name>
<email>mark.asselstine@windriver.com</email>
</author>
<published>2018-03-29T19:29:12+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=7db67a8eced8399d198bfa2cd6b9995f8842ead2'/>
<id>urn:sha1:7db67a8eced8399d198bfa2cd6b9995f8842ead2</id>
<content type='text'>
While investigating a postgresql startup issue I found we were only
updating one instance of PGDATA where several exist. We do not use
these other instances but they are files installed in the system and
should reflect our customized setting for PGDATA.

Signed-off-by: Mark Asselstine &lt;mark.asselstine@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
<entry>
<title>postgresql: follow move to recipes-dbs done in meta-openembedded</title>
<updated>2018-04-04T03:23:43+00:00</updated>
<author>
<name>Mark Asselstine</name>
<email>mark.asselstine@windriver.com</email>
</author>
<published>2018-03-29T19:29:11+00:00</published>
<link rel='alternate' type='text/html' href='https://git.enea.com/cgit/linux/meta-cloud-services.git/commit/?id=b8c333d8ac7944478b448768465b988d64b34582'/>
<id>urn:sha1:b8c333d8ac7944478b448768465b988d64b34582</id>
<content type='text'>
Commit 742404cc8ab0 [postgres: move to recipes-dbs] in
meta-openembedded moved the postgresql recipe to recipes-dbs. We
usually try to match the bbappend's path with that of the bb so
complete a matching move here.

Signed-off-by: Mark Asselstine &lt;mark.asselstine@windriver.com&gt;
Signed-off-by: Bruce Ashfield &lt;bruce.ashfield@windriver.com&gt;
</content>
</entry>
</feed>
