[jira] [Created] (ZEPPELIN-5430) Spark notes output is sometimes white on white

2021-06-24 Thread Nicolas G. Querol (Jira)
Nicolas G. Querol created ZEPPELIN-5430: --- Summary: Spark notes output is sometimes white on white Key: ZEPPELIN-5430 URL: https://issues.apache.org/jira/browse/ZEPPELIN-5430 Project: Zeppelin

Re: [ansible-project] iterate with_file contents ?

2018-12-06 Thread Nicolas G.
worked like a charm , thank you so much Kai Stian ! On Thu, Dec 6, 2018 at 4:00 AM Kai Stian Olstad < ansible-project+l...@olstad.com> wrote: > On 06.12.2018 08:12, Nicolas G wrote: > > I have some files under my role path dir : > > > > ls roles/my-role/files/ > >

[ansible-project] iterate with_file contents ?

2018-12-05 Thread Nicolas G
I have some files under my role path dir : ls roles/my-role/files/ file1 file2 file3 I can display the content of the file by running : - name: display contents debug: msg: "{{ item }}" with_file: - "roles/my-role/files/file1" if in the last line I try something like :

Re: [ansible-project] concatenate a value with another variable in default filter

2017-01-05 Thread Nicolas G
int. > > The only real place to define a variable that can be used in the `hosts` > declaration is via the command line via -e/--extra-vars > > On Thu, Jan 5, 2017 at 8:10 AM, Nicolas G <nico...@gmail.com > > wrote: > >> I have the bellow Ansible inventory : >> >

Re: [RailsFr] Rails sur Openbsd

2016-09-22 Thread Nicolas G
t; > http://stackoverflow.com/questions/29083885/what-does- > binding-a-rails-server-to-0-0-0-0-buy-you > > 2016-09-22 1:21 GMT+08:00 Nicolas G <sabn...@gmail.com>: > >> Ok donc finalement la curiosité étant trop forte je suis passé et avec >> l'option bind 0.0.0.0

Re: [RailsFr] Rails sur Openbsd

2016-09-21 Thread Nicolas G
http://gruson.name/weblog/2016/09/21/openbsd-6-0-et-installation-de-ruby-on-rails-rails-pour-les-intimes/ Si cela intéresse quelqu'un, dans le genre config exotique :-) (quoique il manque l'install sur une carte ARM...) Le 21 septembre 2016 à 19:21, Nicolas G <sabn...@gmail.com> a écrit :

Re: [RailsFr] Rails sur Openbsd

2016-09-21 Thread Nicolas G
Ok donc finalement la curiosité étant trop forte je suis passé et avec l'option bind 0.0.0.0 cela fonctionne... \o/ Quand à comprendre pourquoi ? Merci beaucoup en tout cas Le 21 septembre 2016 à 16:41, Nicolas G <sabn...@gmail.com> a écrit : > OK > je vais essayé (je ne con

Re: [RailsFr] Rails sur Openbsd

2016-09-21 Thread Nicolas G
OK je vais essayé (je ne connaissais pas l'option bind au démarrage). C'est sur une VM de test pour l'instant à laquelle je n'ai pas accès. j'essaierai demain. Merci et je vous tient au courant. Le 21 septembre 2016 à 15:16, Julien Grillot a écrit : > Essaye avec «

Re: [RailsFr] Rails sur Openbsd

2016-09-21 Thread Nicolas G
, Cyril ROHR <cyril.r...@gmail.com> a écrit : > Salut, > > Si tu veux accéder à ton puma depuis l'extérieur il faut faire un bind sur > 0.0.0.0 et pas localhost qui est le défaut. Ou alors je n'ai pas compris ta > question ? > > Cyril > > On 21 Sep 2016, at 13:49, Ni

[RailsFr] Rails sur Openbsd

2016-09-21 Thread Nicolas G
Bonjour Sur une nouvelle "boite" openbsd j'ai commencé à installer ruby, puis ROR (pas sans mal) et j'ai mon serveur qui tourne bien, mais en local. Au sens où le serveur de dev puma se lance bien avec l'adresse localhost:3000 Sur le même réseau interne j'accède au port 80 (serveur httpd de

Re: [ansible-project] Re: Random return host in groups and balanced accross the cluster

2016-02-22 Thread Nicolas G
Brian Coca can you be more specific ? I'm trying something like the bellow but I"m stuck, it's deploying all the servers in every run instead of only a random one .. {% for host in groups['dbservers'] %} {% if loop.index % (loop.length + 1) %} server_address = {{ host }} {{ loop.index %

[ansible-project] Re: Random return host in groups and balanced accross the cluster

2016-02-18 Thread Nicolas G
Thank you Paul , that seems to work . However I'm not completely satisfied with how balanced the random filter has worked. Do you know if there is a better way to have the server_address more equally balanced across a big bluster of servers ? On Wednesday, February 17, 2016 at 9:07:59 PM

[ansible-project] Random return host in groups and balanced accross the cluster

2016-02-17 Thread Nicolas G
Hi, I have an inventory file with the bellow servers : # servers [dbservers] db01 db02 db03 db04 In my template I want to populate the config by choosing randomly one of the servers from the dbservers group . Unfortunately the bellow will return all servers : {% for host in

[ansible-project] Re: Ansible 2 template src path changed ?

2016-01-27 Thread Nicolas G
As suggested by James Camarata in the webinar , the template module code has changed a lot. I'v created an issue in https://github.com/ansible/ansible/issues/14161 . On Tuesday, January 26, 2016 at 1:23:59 PM UTC-5, Nicolas G wrote: > > Hi > > I have the bellow template stored unde

[ansible-project] Ansible 2 template src path changed ?

2016-01-26 Thread Nicolas G
Hi I have the bellow template stored under the shared role but it's been deployed by other roles as in our web role in our example : # roles/shared/templates/config.conf.j2 #roles/web/taks/main.yml : - name: deploy config template: src=config.conf.j2 dest=/etc/project/config.conf In

[ansible-project] SG access different per environment

2015-12-17 Thread Nicolas G
Hi, I have the bellow security groups that is working : name: modify sg_default rules local_action: module: ec2_group region: "us-east-1" vpc_id: "{{ vpcid }}" name: "test" rules: - proto: all cidr_ip: "{{ office_ip }}"

[ansible-project] looping display in local facts

2015-11-05 Thread Nicolas G
Hi, I have the bellow local fact working : # /etc/ansible/facts.d/monitoring.fact [tags] web= db= app= In my template I have the bellow jinja code : {% for facts in ansible_local.monitoring.tags %} {{ facts }} {% endfor %} However this is rendering the facts tags like this : web app db

[ansible-project] ec2 inventory to return Name tags

2015-10-15 Thread Nicolas G
Hi, I'm able to run Ansible on AWS using ec2.py successfully but unfortunately I get the public DNS of the instance instead of the Name tag : ansible -i plugins/inventory/ec2.py "tag_Environment_prod" -m shell -a "uptime" ec2-54-205-89-44.compute-1.amazonaws.com | success | rc=0 >> Filesystem

[ansible-project] ec2 inventory tags combination

2015-10-15 Thread Nicolas G
Hi, Following the https://docs.ansible.com/ansible/intro_dynamic_inventory.html#using-multiple-inventory-sources example, I have inventory file were I have defined my physical and aws servers using ec2 tags as a group in it : # servers.txt : " [tag_Type_Web] [web:children]

[ansible-project] filter to exclude a string pattern ?

2015-09-17 Thread Nicolas G
Hi, I have the bellow values written from some vars , they all have a pattern 'xyz_' on front : xyz_name_1 xyz_name_2 xyz_special_3 xyz_other_4 Is there a filter I can use to exclude the 'xyz_' pattern so my values will be more clear like : name_1 name_2 special_3 other_4 ??? -- You

[ansible-project] manually define an inventory var when there is no inventory file

2015-09-14 Thread Nicolas G
Hi All, I have the following template : *# web_cconfig.j2 :* *web_servers={% for host in groups['web'] %} {{ host }}, {% endfor %}* This file is deployed in a role and using the server list from the inventory web group and working OK, the problem is when there are cases I need to use the

[ansible-project] Re: ansible-pull not working

2015-07-22 Thread Nicolas G
working now, I had to remove the git clone step as this is incorporated in ansible-pull . On Wednesday, July 22, 2015 at 2:01:16 AM UTC+3, Nicolas G wrote: Hi, I'm trying to launch an ec2 instance and bootstrap it using ansible-pull through user-data but unfortunately I'm having some

[ansible-project] ec2_asg timeout issue

2015-07-22 Thread Nicolas G
Hi, I have the bellow config using the ec2_asg module : # AutoScaling group - ec2_asg: name: asg state: present region: {{ region }} load_balancers: {{ elb_name }} availability_zones: [ '{{ az1 }}', '{{ az2 }}', '{{ az3 }}' ] launch_config_name: config

Re: [ansible-project] Re: ec2_asg timeout issue

2015-07-22 Thread Nicolas G.
cheers somehow I didn't noticed these 2 options, I'v set wait_for_instances to False. On Wed, Jul 22, 2015 at 8:29 PM, Jon Hadfield hadfie...@gmail.com wrote: Have you tried specifying a wait_timeout, i.e.: - wait_for_instances Wait for the ASG instances to be in a ready state

[ansible-project] ansible-pull not working

2015-07-21 Thread Nicolas G
Hi, I'm trying to launch an ec2 instance and bootstrap it using ansible-pull through user-data but unfortunately I'm having some difficulties . The user-data (https://gist.github.com/nicolas-g/d648db66ee9db2a15af7) is a bash script that will install ansible , git and make all the setup so I

Re: [ansible-project] var values in the same line

2015-06-30 Thread Nicolas G.
the negative look ahead pattern of regexp I will pass it to you tomorrow if someone else do not beat me Stay tuned Phil 2015-06-30 11:09 GMT+02:00 Nicolas G nicol...@gmail.com: Hi all, We have a role var defined for every role like bellow : # roles/db/vars/main.yml : role : db

[ansible-project] Ansible Jinja indentation bug ?

2015-06-29 Thread Nicolas G
Hi, I have the bellow vars to populate a template , it works almost fine but the final file result you can see there is some indentation problem : # vars : datadog_http_checks: - name : mycheck url : http://localhost:9090/hc/ threshold : 5 window : 5 timeout : 1 # template:

[ansible-project] include all roles tags in a file

2015-06-23 Thread Nicolas G
Hi all, This is another issue I'm running with the migration from Chef to Ansible. In Chef you can use chef search in your code logic to do various things. We need to set a tag inside a config file for every role we run on the server the same way as Chef because our monitoring system

Re: Publication de la mise à jour de Debian 8.1

2015-06-23 Thread Nicolas G.
Bonjour, Le 2015-06-23 01:19, jean-pierre giraud a écrit : Projet Debian https://www.debian.org/ Publication de la mise à jour de Debian 8.1 pr...@debian.org 6 juin 2015

Re: [ansible-project] Help how to achieve the same like in Chef

2015-06-21 Thread Nicolas G
%} # in normal pool part of config {% for host in fullpool %} {% if loop.index % 5 != 4 %} {{host}} {% endif%} {% endfor %} On Fri, Jun 19, 2015 at 12:18 PM, Nicolas G nico...@gmail.com javascript: wrote: Hi, I'm trying to migrate from Chef a recipe for HAProxy

[ansible-project] Help how to achieve the same like in Chef

2015-06-19 Thread Nicolas G
Hi, I'm trying to migrate from Chef a recipe for HAProxy. In the bellow config one of the pool groups are considered to be coming from slow server connections and we isolate them to use certain number of web servers and not all of them as when you have lot's of requests with relatively higher

[ansible-project] advanced Jinja config

2015-05-27 Thread Nicolas G
Hi, I need help with the bellow configuration in Jinja, I'm using a for loop to populate the hosts from a group defined in my inventory and that's working good but what my application requires is a letter in front of every host in alphabetical order depending how many host numbers I have : #

Re: [ansible-project] advanced Jinja config

2015-05-27 Thread Nicolas G
() }}:{{ host }}{% if not loop.last %},{% endif %}{% endfor %} This creates a 'cycler' with the lowercase letters of the english alphabet, and cycles through them on each iteration of the for loop. On Wed, May 27, 2015 at 1:33 PM, Nicolas G nico...@gmail.com javascript: wrote: Hi, I need

Re: [ansible-project] balanced configuration

2015-05-21 Thread Nicolas G
, 2015 at 11:11 PM, Nicolas G nico...@gmail.com javascript: wrote: Hi, We have a 2 tiers environment where the front-end servers connects to the backend servers. As an example we have 30 application servers and 3 backend servers, let's say every backend server should support up to 10

[ansible-project] balanced configuration

2015-05-19 Thread Nicolas G
Hi, We have a 2 tiers environment where the front-end servers connects to the backend servers. As an example we have 30 application servers and 3 backend servers, let's say every backend server should support up to 10 frontend servers. We need Ansible to automatically setup the configuration

[ansible-project] Does ansible -m ec2 works ?

2015-05-12 Thread Nicolas G
Hi, I would like to launch an ec2 instance the same way you can with chef-knife : ansible localhost -m ec2 -a key_name=test group=qa instance_type=t2.micro image=ami-aecd60c7 wait=true exact_count=1 instance_tags=testing --connection=local but Im getting this error : localhost | FAILED {

Re: [ansible-project] Re: return code from dict ?

2015-04-30 Thread Nicolas G.
- Matt On Wednesday, April 29, 2015 at 8:06:33 AM UTC-7, Nicolas G wrote: Hi, I have a plabyook that checks if my python app has been installed and only run pip install if the packages have not been installed. Unfortunately because I'm doing a check using with_items the register value

Re: [FRnOG] [ALERT] [ALERTE] - Incident SFR Venissieu

2015-03-20 Thread Nicolas G
Bonjour, Idem ici, pas de coupure visible pour un rack en 0A28 2015-03-20 8:37 GMT+01:00 Jerome SCHEVINGT jerome...@phibee-telecom.net: Le 20/03/2015 08:34, Nicolas Mrowczynski a écrit : Bonjour, Une partie du netcenter de Venissieu semble être dans le black out depuis 02h30, quelqu'un

Re: [ansible-project] using Ansible-Vault vars to run local bash scripts

2015-01-18 Thread Nicolas G.
why depositing the secrets into a file alongside the script would be any less secure than hardcoding them in the script? Tom On 15 January 2015 at 17:30, Nicolas G. nicol...@gmail.com wrote: Thanks for the reply Tom but both of your suggestions doesn't really help with the security concerns

Re: [ansible-project] using Ansible-Vault vars to run local bash scripts

2015-01-15 Thread Nicolas G.
. Alternatively you could maybe write them to files on the target host (be it localhost or another host) with tight permissions and remove afterwards? Regards Tom On 15 January 2015 at 14:52, Nicolas G nicol...@gmail.com wrote: Hi, I have a bash script that i would like to run locally

[ansible-project] using Ansible-Vault vars to run local bash scripts

2015-01-15 Thread Nicolas G
Hi, I have a bash script that i would like to run locally using the Ansible shell module , the problem is that want to use some encrypted variables from Ansible-Vault in that bash script but I think for security reasons ansible-vault variables are not rendered from the shell module.. Is there

[ansible-project] Re: Add EC2 security group - only if it not already exists

2015-01-15 Thread Nicolas G
hi, I think when I was trying the ec2_group module for some reason it will only fail if the security group already exists but was not created by the module, if you create a new security group using the ec2_group module it wont fail when you run the same playbook again. On Wednesday, January

[ansible-project] Re: Can I do yum localinstall with the yum module?

2015-01-15 Thread Nicolas G
If I'm not wrong it acts like the yum command, if the rpm exist locally the yum module will just work like the yum localinstall command. In your example this will install the RPM on the destination system as long you don't have anywhere defined connection: local or local_action . On Thursday,

[ansible-project] Ansible facts help (ansible_fqdn)

2014-11-20 Thread Nicolas G
Hi, Im trying to use Ansible magic var inventory_hostname along with ansible_fqdn fact. I have a playbook that will update the hostname of the system based on the entry in the inventory file and later it will use ansible_fqdn value to configure a file. Unfortunately the ansible_fqdn keeps the

Re: [ansible-project] Re: Ansible facts help (ansible_fqdn)

2014-11-20 Thread Nicolas G
using set_fact so you don't have to re-gather facts in this situation. Thanks! On Thu, Nov 20, 2014 at 10:22 AM, Nicolas G nico...@gmail.com javascript: wrote: Sorry , the correct playbook is the one bellow, the setup module executed before the debug action at the end: - hosts: all

Re: [ansible-project] Re: Ansible facts help (ansible_fqdn)

2014-11-20 Thread Nicolas G
at 10:22 AM, Nicolas G nico...@gmail.com javascript: wrote: Sorry , the correct playbook is the one bellow, the setup module executed before the debug action at the end: - hosts: all tasks: - name: update the hostname hostname: name={{ inventory_hostname }} - name: boot

Re: [ansible-project] Re: Ansible facts help (ansible_fqdn)

2014-11-20 Thread Nicolas G
I'm expecting ansible_fqdn to have the same value as inventory_hostname , see my test playbook and output bellow : - name: show inventory_hostname debug: msg=inventory_hostname is {{ inventory_hostname }} - name: show ansible_fqdn debug: msg=ansible_fqdn is {{ ansible_fqdn }} - name:

Re: [ansible-project] Re: Ansible facts help (ansible_fqdn)

2014-11-20 Thread Nicolas G
I think I found the most weird bug that was driving me crazy, it seems for some strange reason when you have in your playbook vars_files with the name based on a variable the ansible_fqdn keeps the old value... Here are all the steps to reproduce it in ansible 1.7.1 : create the bellow 3 files

Re: [ansible-project] Re: Ansible facts help (ansible_fqdn)

2014-11-20 Thread Nicolas G
What's the ETA for 1.8 ? On Friday, November 21, 2014 12:13:42 AM UTC+2, James Cammarata wrote: Ahh yes, this was a bug in 1.7.x which has been fixed in devel and will be included in 1.8. On Thu, Nov 20, 2014 at 3:15 PM, Nicolas G nico...@gmail.com javascript: wrote: I think I found

[ansible-project] Ansible-pull fail tasks notifications ?

2014-10-30 Thread Nicolas G
Hi, One of the benefits of running Ansible in push mode is that you can see exactly when and what task have failed. I'm planning to use ansible in pull mode and I would like to know when a task have failed in pull mode by getting a notification. Is that possible ? Regards, N. -- You

[ansible-project] Strange behaviour or misconfig ? (RDS and local connection)

2014-10-27 Thread Nicolas G
Hi All, I'm using the bellow config in order to deploy Ansible in AWS with no problem , the *db* servers are actually *RDS* instances and the rest is all EC2 instances. ### inventory hosts file: [db] db1.example.com ansible_connection=local [web] web1.example.com web2.example.com

[ansible-project] Re: tomcat service to start only after the Redis replication is completed

2014-09-03 Thread Nicolas G
: result.stdout.find(up) != -1 retries: 5 delay: 10 Thanks for the help ! On Wednesday, September 3, 2014 1:22:42 PM UTC+3, Frank Steffen wrote: You may delete or rotate the log file before. Am Dienstag, 2. September 2014 12:46:34 UTC+2 schrieb Nicolas G: Hi Frank, thanks for the reply. I

[ansible-project] Re: tomcat service to start only after the Redis replication is completed

2014-09-02 Thread Nicolas G
schrieb Nicolas G: Hi, We use a single redis master server and many slave nodes that are running tomcat along with the redis slave service. One of the problems I have is that I need my tomcat application to start when the replication is completed, on my playbook I first install and start

[ansible-project] tomcat service to start only after the Redis replication is completed

2014-09-01 Thread Nicolas G
Hi, We use a single redis master server and many slave nodes that are running tomcat along with the redis slave service. One of the problems I have is that I need my tomcat application to start when the replication is completed, on my playbook I first install and start redis slave service

[ansible-project] pagerduty module not working

2014-08-06 Thread Nicolas G
Hi, I'm trying to use the pagerduty module with no luck, when I run the bellow tasks with the right credentials I get a failed to create the window: HTTP Error 400: Bad Request : TASK: - name: Create a 1 hour maintenance window in PagerDuty pagerduty: name=mydomain user=u...@mydomain.com

Re: [FRnOG] [ALERT] internet Completel down au Netcenter SFR de Lyon/Venissieux

2014-06-06 Thread Nicolas G
Bonjour, Ici, 10 minutes de coupure vers 11h30 pour une baie hébergée en salle 0A28, c'est revenu assez rapidement, Cordialement, Nicolas G 2014-06-06 12:06 GMT+02:00 Eric Fourage e...@fourage.net: bonjour, Gros crash internet Completel depuis 8h30 ce matin pour les clients Completel au

[ansible-project] how to set defaults for ec2_facts when not in AWS ???

2014-05-20 Thread Nicolas G
Hi, We have our ansible playbooks working with no problem to deploy our servers in Amazon ec2. One of the ansible modules we use is the ec2_facts in order to configure some files , as for example we use the {{ ansible_ec2_placement_availability_zone }} value. There is a chance we need to

ES and AWS Cloud plugin autodiscovery not working

2014-05-19 Thread Nicolas G
Hi, I'm trying to make the AWS auto-discovery plugin between 2 nodes to work with no luck , each node is only aware of itself and set as a master. This is regarding ELASTICSEARCH_VERSION : 1.1.1 and ES_AWS_CLOUD_PLUGIN_VERSION: 2.1.1 . See my configuration file bellow : #

Re: ES and AWS Cloud plugin autodiscovery not working

2014-05-19 Thread Nicolas G
Got it working, the IAM user didn't had the right discovery access policy. Thanks ! On Monday, May 19, 2014 10:29:05 PM UTC+3, Nicolas G wrote: Hi, I'm trying to make the AWS auto-discovery plugin between 2 nodes to work with no luck , each node is only aware of itself and set as a master

[ansible-project] is it possible for a task to use a different template depending of the role ?

2014-02-11 Thread Nicolas G
Hi, I have agent-install.yml that installs our application agent and deploys the agent-config template, since agent-install.yml is shared by many roles it's located under the common role tasks : role/common/tasks/agent-install.yml role/common/template/agent-config.j2 This tasks will be run

Re: [gdal-dev] TOC sub-dataset retrieving when frame with same coverage share the same boundary rectangle.

2014-02-10 Thread Nicolas G
names in the A.TOC file. There should be overlaps between the zones but this data content shall be identical. Best Regards Andreas Oxenstierna Selon Nicolas G nicolas.g-...@outlook.fr: hi yes you have well described the behaviour

Re: [gdal-dev] TOC sub-dataset retrieving when frame with same coverage share the same boundary rectangle.

2014-02-10 Thread Nicolas G
boundary rectangle. Selon Nicolas G nicolas.g-...@outlook.fr: Hi Andreas, The fact is that I can't use the GDAL API to get the different sub-datasets in this particular case, so can't make any combination of frames without going directly to all NITF frames as suggested by Even

[gdal-dev] TOC sub-dataset retrieving when frame with same coverage share the same boundary rectangle.

2014-02-07 Thread Nicolas G
Hi, I’m using GDAL to get the CADRG database sub-dataset list. As an example (TOC file content): - Only one boundary rectangle defined in “boundary rectangle section”, - In “frame file index section”, I have two frames covering the same area (same resolution, …, but different functional

[ansible-project] Re: Configuring Ansible to run play books through a bastion host on aws/ec2

2014-02-06 Thread Nicolas G
A different approach is to setup your bastion with an OpenVPN server, then your client as a laptop will be using the bastion server as a Network Gateway, the IP will be showing as your are connecting from the bastion server. On Wednesday, February 5, 2014 8:59:17 PM UTC+2, Jeff Lord wrote:

[ansible-project] Re: Ansible book

2014-01-20 Thread Nicolas G
I just found this one in case you are still interested : https://www.packtpub.com/ansible-configuration-management/book On Thursday, March 28, 2013 2:57:20 PM UTC+2, João Paulo Mafra wrote: Hi! Anyone knows if there is any book about Ansible or if someone is writing a book on it? Thank

[ansible-project] Re: Question about best practice approach to indicate that something is already setup

2014-01-13 Thread Nicolas G
Hi Randy, I had the same case but couldn't find an RPM version besides the java openjdk which is not suitable for our application, this is the tasks I'm using in Ansible to install Java jdk-1.6.0_26-fcs.x86_64 version downloaded from Oracle and saved in a S3 bucket : - name: register if java

[ansible-project] credentials problem when running ansible-pull from cron

2013-11-29 Thread Nicolas G
Hi All, This is a simple playbook I have to test the S3 module which is working fine but I'm having problems when I run the same in pull mode from cron: # s3example.yml --- - hosts: localhost connection: local user: root tasks: - name: download file from s3 s3: bucket=my-bucket

[logback-user] DuplicateMessageFilter : time based duplication

2013-11-13 Thread Nicolas G
Hi, We are using a modified version of ch.qos.logback.classic.turbo.DuplicateMessageFilter in our project. We replaced the LRUMessageCache with a cache with a time based eviction. This new cache is build with guava CacheBuilder. The goal is to avoid duplicate messages during a time frame. I

Re: [google-appengine] datastore stats not updated for 4 days

2013-09-24 Thread Nicolas G
Same for me Nicolas On Mon, Sep 23, 2013 at 1:55 PM, timh zutes...@gmail.com wrote: Howdy Normally stats are only a couple of days old, but I am up to 4+ days and no updated datastore stats. Anyone else seeing this ? T -- You received this message because you are subscribed to the

[Galette-devel] Installation avec SQLite

2013-08-22 Thread Nicolas G.
Bonjour, Sauf erreur de ma part, dans la documentation, il n'est pas fait mention de la procédure de création du fichier de base de données SQLite pour Galette ou si le script d'installation est sensé créé la base SQLite. Du coup, l'installation ne peut pas continuer : Connexion à la base

Re: Separated config file support

2013-03-11 Thread Nicolas G
Willy Tarreau w at 1wt.eu writes: On Wed, Jun 15, 2011 at 11:21:57PM +0200, Mike Hoffs wrote: Maybe it is possible to add an include conf.d in the main config, and after that part all other config files will be automaticly included. Something like apache can do ? Not convinced at all

Re: Installing awesome from git under Ubuntu precise?

2012-06-08 Thread Nicolas G. Querol
2012/6/8 Rainer M Krug r.m.k...@gmail.com -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi I would like to use bashlets, and as it seems, I have to use awesome from git. In principal not a problem - but I would like to install it using a .deb, preferably one which just updates the

Re: Setting a specified gap between windows

2012-06-05 Thread Nicolas G. Querol
. you have to specify useless_gap in these files. best regards! 2012/6/4 Paweł Rumian gork...@gmail.com 2012/6/4 Nicolas G. Querol nicolas.gque...@gmail.com: Thanks again Paweł! I'm glad I was able to help :) Paweł -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org. Ah

Re: Setting a specified gap between windows

2012-06-05 Thread Nicolas G. Querol
/lib/awful/layout/suit/fair.lua sudo ln -s ~/.config/awesome/fair.lua /usr/share/awesome/lib/awful/layout/suit/fair.lua sudo rm /usr/share/awesome/lib/awful/layout/suit/tile.lua sudo ln -s ~/.config/awesome/tile.lua /usr/share/awesome/lib/awful/layout/suit/tile.lua 2012/6/5 Nicolas G. Querol

Setting a specified gap between windows

2012-06-04 Thread Nicolas G. Querol
Hello awesomers, Sorry if this question has already been answered, but how would one specify a consistent gap of a few pixels between tiled windows? I'm using awesome-git at the moment. -- Nicolas Gaulard Querol nicolas.gque...@gmail.com

Re: Setting a specified gap between windows

2012-06-04 Thread Nicolas G. Querol
2012/6/4 Paweł Rumian gork...@gmail.com 2012/6/4 Nicolas G. Querol nicolas.gque...@gmail.com: 2012/6/4 Paweł Rumian gork...@gmail.com Hello, check the parameter theme.border_width in the file theme.lua (of your current theme). BR, Paweł Thanks for your suggestion. It kind

Re: Vicious gmail widget

2012-02-15 Thread Nicolas G. Querol
mail address instead of the sender's. -- Nicolas G. Querol | nicolas.gquerol(at)gmail.com -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Re: Vicious gmail widget

2012-02-13 Thread Nicolas G. Querol
Many thanks for the pointers, I will give it a try tomorrow and see if I can do it myself. Otherwise you will be the first to know! Le dimanche 12 févr. 2012 à 02:23:55 (+0100), Adrian C. a écrit : On Sat, 11 Feb 2012, Nicolas G. Querol wrote: Does it appear before title tag

Re: Vicious gmail widget

2012-02-11 Thread Nicolas G. Querol
miss where these belong. I tried to add your snippets anyway, and it didn't work because the '{sender}' field is always nil no matter what, and thus cannot be concatenated by the string.match method. Sorry to bother you, but like I said I hardly know Lua. -- Nicolas G. Querol | nicolas.gquerol

Re: Vicious gmail widget

2012-02-09 Thread Nicolas G. Querol
. I ran the command you told me to, and it appears that the sender is the stored in the email tag. It is displayed as follows: emailf...@bar.com/email. -- Nicolas G. Querol | nicolas.gquerol(at)gmail.com -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Vicious gmail widget

2012-02-06 Thread Nicolas G. Querol
blank, alas). As I am not a Lua expert, I would appreciate if someone could give me some advice here. Thanks, -- Nicolas G. Querol | nicolas.gquerol(at)gmail.com -- To unsubscribe, send mail to awesome-unsubscr...@naquadah.org.

Re: [nebula-dev] Question

2011-11-14 Thread Nicolas G. Machado
Nicolas 2011/11/14 Wim Jongman wim.jong...@gmail.com Hi Nicolas, Please Google for SWT snippets to learn how to embed a cell editor in a table. The download is already a ready to use jar. Best regards, Wim On Nov 11, 2011, at 20:13, Nicolas G. Machado nicolas.mach

Re: [RailsFr] Re: plusieurs instances rails sur une même machine

2011-03-28 Thread Nicolas G
2011/3/27 Thibaut Barrère thibaut.barr...@gmail.com RVM est effectivement parfois un peu compliqué à utiliser et oblige à des manips (cf wrapper pour god etc), personnellement j'ai pas mal lutté au début. Apparté: même avec RVM, on ne peut toujours pas simplement utiliser deux versions de

[Spip] Erreur forum avec PgSQL

2010-10-14 Thread Nicolas G.
Salut, Lorsque l'on essaie de poster un message dans le forum d'un article, à la prévisualisation, on a invariablement les messages d'erreur suivants : Warning: pg_query() [function.pg-query]: Query failed: ERREUR: syntaxe en entrée invalide pour l'entier : « » in /var/www/.../ecrire/req/pg.php

[RailsFr] diaspora en Ruby On rails

2010-09-17 Thread Nicolas G
Bonjour Pour ceux qui auraient raté cela Diaspora qui se veux être un réseau social en logiciel libre décentralisé et ouvert est sorti en developper preview avant-hier et est en rails3/mongo. je trouve ça intéressant pour Rails, qu'en pensez vous (pas encore testé). NG -- Vous avez reçu ce

Re: [Spip] PostgreSQL et dates

2010-09-01 Thread Nicolas G.
Salut, Personne pour mon problème de rafraîchissement de date ? Merci. Le Dim 29 août 2010 22:25, Nicolas Grandjean a écrit : Bonjour, Utilisateur de SPIP depuis longtemps, j'ai toujours utilisé MySQL puis, un jour, j'ai décidé de tester SPIP avec PostgreSQL... Malgré quelques bogues

Re: [RailsFr] rvm problem avec zlib

2010-08-31 Thread Nicolas G
Ok cela fonctionne bien. c'est tout bon merci NG -- Vous avez reçu ce message, car vous êtes abonné au groupe Railsfrance de Google Groups. Pour transmettre des messages à ce groupe, envoyez un e-mail à l'adresse railsfrance@googlegroups.com Pour résilier votre abonnement envoyez un e-mail à

Re: [RailsFr] rvm problem avec zlib

2010-08-30 Thread Nicolas G
2010/8/30 Nicolas G sabn...@gmail.com 2010/8/30 Nicolas Blanco slaine...@gmail.com Yo, essaye de vérifier que ta plateforme de dev a les paquets zlib et zlib-devel et recommence l'installation des Ruby. Nicolas En effet ils ne sont pas là, ni installables d'ailleurs en faisant un apt

[RailsFr] rjs, partiel et varaible

2010-08-07 Thread Nicolas G
Bonjour j'ai une difficulté avec un rjs qui recharge deux div distinctes avec chacune un partiel qui va bien. le second qui me pose problème la variable est initiée dans le contrôleur Pati @comptastotal = Compta.find(:all, :include = :pati, :include = :mede, :conditions = [pati_id = ? AND

Re: [RailsFr] calcul de la différence entre deux da tes

2010-07-03 Thread Nicolas G
2010/7/3 Alexis Bernard alexis.bern...@rubyfr.org Il n'y a pas de méthodes à ma connaissance pour faire 28/03 - 28/02 = 1 mois, mais ça se fait en quelques lignes. oui, mais vu le nombre de méthodes ruby sympa pour la gestion du temps et des calendriers. Reste que faire cela en quelques

[RailsFr] calcul de la différence entre deux dates

2010-07-02 Thread Nicolas G
Bonjour je recherche quelque chose de probablement trivial mais je ne trouve pas de méthode à la ruby pour transformer une différence de deux dates en une « date » sur laquelle je peux appliquer les méthodes telles que year etc … Si je soustrais deux dates j'obtiens le nombre de jours, mais

Re: [RailsFr] Re: Choix de livre

2010-04-19 Thread Nicolas G
A mon avis la version finale ne sortira pas avant 1 an, c'est un peu ce qui s'était passé avec la précédente édition. C'est aussi le cas pour le bouquin sur Rspec, il ont du mal a le sortir car l'outil évolue très vite. (Je l'ai commandé il y a plus d'un an). Durant les six premiers mois, la

Re: [RailsFr] Re: Prompt dans un formulaire pour éd iter

2010-04-19 Thread Nicolas G
si tu édites tu as la valeur de pays déjà renseignée, donc pas besoin de select a country non ? NG -- Vous avez reçu ce message, car vous êtes abonné au groupe Railsfrance de Google Groups. Pour transmettre des messages à ce groupe, envoyez un e-mail à l'adresse railsfrance@googlegroups.com

Re: [RailsFr] Re: Re: Prompt dans un formulaire pour éd iter

2010-04-19 Thread Nicolas G
2010/4/19 Thomas Tomtom list-incom...@andreas-s.net eh bien si, j'en ai besoin car j'utilise un script javascript et il me faut donc select a country en début de liste. à quoi te sert ton script JS ? NG -- Vous avez reçu ce message, car vous êtes abonné au groupe Railsfrance de Google

Re: [RailsFr] retour d'expérience sur un serveur ra ils en ARM

2010-03-24 Thread Nicolas G
2010/3/24 s...@work s@adhoc-software.com Tout retour d'expérience à de l'intérêt. elle est démarrée en mode development (problème avec le mode production pour le moment) avec thin sur une base mysql 5 Ca c'est un énorme handicap, surtout avec un CPU mou du genou. Entre la config de

[RailsFr] retour d'expérience sur un serveur rails en ARM

2010-03-23 Thread Nicolas G
Bonjour je pense que cela ne va pas être d'un grand intérêt pour tous mais cela peut servir. Dans le cadre d'un déploiement d'un intranet avec une contrainte forte en basse consommation j'ai eu l'idée d'une machine arm en client mais aussi en serveur sachant que les performances des dernières

Re: [RailsFr] Hébergement chez Gandi ?

2010-03-22 Thread Nicolas G
2010/3/21 Christophe Decaux list-incom...@andreas-s.net Bonjour à tous. Je suis en train de développer une appli Rails et je cherche un hébergeur VPS avec des capacités de montée en charge très ponctuelle. Après une première étude, je penche vers Gandi et je me demande si certains d'entre

[RailsFr] thin passage en production impossible

2010-03-18 Thread Nicolas G
Bonjour j'ai une application qui tourne bien en développement avec thin sans problèmes mais si je passe en test de production avec thin -p 3004 -e production (le même port qu'en dev) (en ayant modifié le database.yml en changeant development par production - pas le plus rigoureux mais le plus

Re: [RailsFr] Re: Sqlite en pratique

2010-03-18 Thread Nicolas G
en en discutant hier à solutions linux la prochaine évolution de sqlite sera plus performante (comme chez tout le monde la prochaine sera meilleure etc.) et permettra de travailler à plusieurs sur la base. http://www.sqlite.org/src/timeline je ne retrouve pas les dev futur. NG -- Vous avez

Re: [RailsFr] thin passage en production impossible

2010-03-18 Thread Nicolas G
j'avoue ne pas trop comprendre le problème La trace est incompléte. Il nous faut plus de détail. comme l'exception levée. -- Cyril Mougel comment je fais pour en avoir une plus grande ( ;-) ) les logs de thin ? car en indiquant thin start -p 3004 -e production avec -- trace rien de

  1   2   >