-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
postgresql | create georchestra user fails #32
Comments
race condition again i guess, can you retry with this before the 'create georchestra user' task ?
should be equivalent to
but im not sure having the socket is enough of a clue for psql being fully available. |
Will retry tonight on my home computer. |
This did not fix it. Looks like 8efd230 is the culprit. |
Seems like a vagrant-specific issue, since this fixes it: diff --git a/playbooks/georchestra.yml b/playbooks/georchestra.yml
index 9c077d1..f58d3a0 100644
--- a/playbooks/georchestra.yml
+++ b/playbooks/georchestra.yml
@@ -83,7 +83,7 @@
extractor_datadir: /srv/data/extractor/
tomcat_keystore_pass: tomcatkstp
tomcat_basedir: /srv/tomcat
- system_locale: en_US.UTF-8
+ system_locale: fr_FR.UTF-8
logs_basedir: /srv/log
force_https: true
ldapadmin_adminemail: [email protected] |
That.. makes no sense to me :) If you use en_US, postgresql doesnt start in the remote VM ? |
right, makes no sense to me too... |
oh, maybe an empty vm settings depends on the host settings, and en_US is not in the list of 'available' locales to locale_gen ? |
possibly |
Eww, gross.. so what's the 'right' way to fix this ? Fix vagrand config/sample invocation ? The playbook ? |
http://stackoverflow.com/a/34582489 seems a minimal fix, does it work for you ? |
Will try tonight. |
@Vampouille is going to have a look :-) |
Seems like I fixed this issue by preventing the guest ssh server to accept the LANG and LC_* environment variables from my host: diff --git a/Vagrantfile b/Vagrantfile
index fe33e82..3440e1d 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -4,6 +4,12 @@
# Vagrantfile API/syntax version. Don't touch unless you know what you're doing!
VAGRANTFILE_API_VERSION = "2"
+$script = <<SCRIPT
+echo configuring ssh in guest...
+sudo sed -i '/AcceptEnv/d' /etc/ssh/sshd_config
+sudo /etc/init.d/ssh restart
+SCRIPT
+
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
# All Vagrant configuration is done here. The most common configuration
# options are documented and commented below. For a complete reference,
@@ -31,6 +37,8 @@ Vagrant.configure(VAGRANTFILE_API_VERSION) do |config|
config.vm.define "georchestra" do |georchestra|
end
+ config.vm.provision "shell", inline: $script
+
config.vm.provision "ansible" do |ansible|
# execute this playbook for vm provisioning:
ansible.playbook = "playbooks/georchestra.yml" For the record, here are the locales on my host:
... while in the box, they are:
|
An improvement over the previous patch would be:
Opinions ? |
Have you tried this instead ? Seems 'simpler' than a shell hack |
With up to date sources, and no local additions,
The text was updated successfully, but these errors were encountered: