[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 : with_file:

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

2017-01-05 Thread Nicolas G
that point. > > 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 > > wrote: > >> I have the bellow Ansible inventory : >> >> [web:

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

2017-01-05 Thread Nicolas G
I have the bellow Ansible inventory : [web:children] web-eu-west web-us-east [eu:vars] dc=eu-west [eu:children] web-eu-west [us:vars] dc=us-east [us:children] web-us-east The bellow is working fine in my playbook : -- hosts: "{{ hosts | default('web') }}" Unfortunately we have a case now whe

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 : > >> Ok donc finalement la curiosité étant trop forte je suis passé et avec >> l'option bind 0.0.0.0 cela fonctionne... >>

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 a écrit : > Ok donc

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 a écrit : > OK > je vais essayé (je ne connaissais pas l

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 « rails s -d -b 0.0.0.0 » (c'e

Re: [RailsFr] Rails sur Openbsd

2016-09-21 Thread Nicolas G
re 2016 à 14:56, Cyril ROHR 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, Nicol

[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 openb

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 % lo

[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 UTC-

[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 groups['dbserv

[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

[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 Ansibl

[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] web01.exampl

[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 recei

[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 sam

[ansible-project] haproxy nbproc and cpu-map config help

2015-08-13 Thread Nicolas G
Hi All, I'm trying to deploy with Ansible an haproxy.cfg config that will automatically render to the bellow : #/etc/haproxy.cfg """ nbproc 11 cpu-map 1 0 cpu-map 2 1 cpu-map 3 2 cpu-map 4 3 cpu-map 5 4 cpu-map 6 5 cpu-map 7 6 cpu-map 8 7 cpu-map 9 8

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 wrote: > Have you tried specifying a wait_timeout, i.e.: > > - wait_for_instances > Wait for the ASG instances to be in a ready state before > exi

[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: "

[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 unfortuna

[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

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

2015-06-30 Thread Nicolas G.
use 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 : > >> Hi all, >> >> We have a role var defined for every role like bellow : &g

[ansible-project] var values in the same line

2015-06-30 Thread Nicolas G
Hi all, We have a role var defined for every role like bellow : # roles/db/vars/main.yml : role : db # roles/web/vars/main.yml : role : web # roles/app/vars/main.yml : role : app We need to have this var a specific "config :" line in a configuration file in a way that will be the same if we

[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:

Re: [ansible-project] configure half cluster with different value

2015-06-28 Thread Nicolas G
Thank you Brian. I was able to use the random filter but I'm not able to use modulo... can you give me an example for your first two suggestions ? Regards, Nicolas. On Friday, June 26, 2015 at 10:10:18 PM UTC+3, Brian Coca wrote: > > many ways: > > - since i normally have a counter on servers

[ansible-project] configure half cluster with different value

2015-06-26 Thread Nicolas G
Our application TIER consist 50 servers managed by Ansible that need to be configured to speak with 2 backend servers. # /etc/app.cfg : config_server={{ db_server_address }} We need half of the cluster config to point to bd1.example.com and other half db2.example.com . Any thoughts ? -- Yo

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

[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 aggregatio

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

2015-06-21 Thread Nicolas G
{{host}} > {% endif%} > {% endfor %} > > # 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 > wrote: > > Hi, > >

[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

Re: [ansible-project] advanced Jinja config

2015-05-27 Thread Nicolas G
sts={% for host in slaves %}{{ letters.next() }}:{{ 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

[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] balanced configuration

2015-05-21 Thread Nicolas G
Thanks Mike you are right, removing the curly braces and using + pool worked. On Thursday, May 21, 2015 at 5:04:53 PM UTC-4, Mike Herron wrote: > > Assuming 'pool' is provided somewhere else, I don't think you want the > curly braces? > > {% for servers in groups['pool-' + pool ] %} > serv

Re: [ansible-project] balanced configuration

2015-05-21 Thread Nicolas G
that it > makes sense to give them different secondary_roles, then just isolationg by > pool should be easy. > > > Brent > > > On Tue, May 19, 2015 at 11:11 PM, Nicolas G > wrote: > >> Hi, >> >> We have a 2 tiers environment where the fr

[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 s

[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 I"m getting this error : """ localhost | FAIL

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

2015-04-30 Thread Nicolas G.
our first task > when: item.rc == 1 # this uses the correlated stored return code from > your first task > > - 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

[ansible-project] return code from dict ?

2015-04-29 Thread Nicolas G
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 is a dictionary causing an error on the next when: statement when evaluating the co

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 : > 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 aurait il des informa

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

2015-01-18 Thread Nicolas G.
#x27;m not sure 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. wrote: > >> Thanks for the reply Tom but both of your suggestions doesn't rea

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

2015-01-15 Thread Nicolas G.
in syslog and console output. > > 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 wrote: > >> Hi, >&

[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] 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 14

[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

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 > wrote: > >> I think

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
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 }}" - na

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

2014-11-20 Thread Nicolas G
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 > wrote: > >> Sorry , the correct playbook is the one bellow, the setup module executed >> before the debug action at the end: >&g

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

2014-11-20 Thread Nicolas G
e to be used. As I said previously, I would recommend 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 > wrote: > >> Sorry , the correct playbook is the one bellow, the setup module

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

2014-11-20 Thread Nicolas G
t;127.0.0.1{{'\t'}}{{ inventory_hostname }} localhost.localdomain localhost" state=present backrefs=yes - name: Gathering Ansible facts setup: - name: Print ansible_fqdn debug: msg="ansible_fqdn is {{ ansible_fqdn }}" """ O

[ansible-project] Ansible facts help (ansible_fqdn)

2014-11-20 Thread Nicolas G
Hi, I"m 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

[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 receiv

[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 web3.example

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

2014-09-03 Thread Nicolas G
register: result until: 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

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

2014-09-02 Thread Nicolas G
resent > > Regards, > > Frank > > > Am Montag, 1. September 2014 13:00:15 UTC+2 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. >> >

[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 befo

[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.co

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 : > bonjour, > > Gros crash internet Completel depuis 8h30 ce matin pour les clients > Compl

[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 depl

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 awa

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 : # /etc/elasticse

[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 f

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

2014-02-10 Thread Nicolas G
age share the same boundary rectangle. > > Selon Nicolas G : > > > 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

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

2014-02-10 Thread Nicolas G
dard - so the scalelevels are just logical 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 : hi yes you ha

[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 c

[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? > > >

[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 ja

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

2013-12-04 Thread Nicolas G.
_KEY_ID and AWS_SECRET_ACCESS_KEY: > > */5 * * * * ...; AWS_ACCESS_KEY_ID=id AWS_SECRET_ACCESS_KEY=secret > ansible-pull ... > > or: > > */5 * * * * ...; source /path/to/your/.bashrc; ansible-pull ... > > 2013/11/29 Nicolas G : > > Hi All, > > > > This is

[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 o

[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 join

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 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 Google Gro

Re: [Galette-devel] Installation avec SQLite

2013-08-22 Thread Nicolas G.
Bonjour, Je viens de trouver en ajouter un echo tout bourrin qu'il fallait simplement créer le dossier 'data' dans le répertoire de Galette. Du coup, j'ai deux questions : 1. Ça serait sympa soit d'indiquer qu'il faut créer le dossier, soit de le créer de manière automatique ou encore mieux,

[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 im

Re: Separated config file support

2013-03-11 Thread Nicolas G
Willy Tarreau 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 > -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 > official ubunt

Re: Setting a specified gap between windows

2012-06-05 Thread Nicolas G. Querol
some/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 >

Re: Setting a specified gap between windows

2012-06-05 Thread Nicolas G. Querol
have to specify "useless_gap" in these files. > > best regards! > > 2012/6/4 Paweł Rumian > >> 2012/6/4 Nicolas G. Querol : >> > Thanks again Paweł! >> >> I'm glad I was able to help :) >> >> Paweł >> >> -- >> To

Re: Setting a specified gap between windows

2012-06-04 Thread Nicolas G. Querol
2012/6/4 Paweł Rumian > 2012/6/4 Nicolas G. Querol : > > 2012/6/4 Paweł Rumian > >> Hello, > >> > >> check the parameter theme.border_width in the file theme.lua (of your > >> current theme). > >> > >> BR, > >> Paweł >

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

Re: Vicious gmail widget

2012-02-15 Thread Nicolas G. Querol
he widget would display my 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: > > > > > > Doe

Re: Vicious gmail widget

2012-02-11 Thread Nicolas G. Querol
lua you can't > 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.

Re: Vicious gmail widget

2012-02-09 Thread Nicolas G. Querol
we'll get to that later. > > I ran the command you told me to, and it appears that the sender is the stored in the tag. It is displayed as follows: "f...@bar.com". -- 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
just 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
ks great!, I'll try to use NumberFormat ! Best Regards Nicolas 2011/11/14 Wim Jongman > 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

[nebula-dev] Question

2011-11-11 Thread Nicolas G. Machado
hi, I downloades and try 2 widgets. I have 2 questions: In the grid how can I add Cell Editors ?, I need to edit cell like excel, for instance, when the numeric keypad is pressed then I edit the cell. - how to pack an generate a jar file to include in my app ? Best regards -- ___

[ED] Results & Spirit EUCR South

2011-09-12 Thread Nicolas G
Hi everybody, Please find the results of EUCR South. Nicolas Final Result : In the Open Division, FAB and Freespeed are qualified to Elite Divison. Friselis, Ultimate Vibration & La Fotta to Challenger Division In the Women Division, Lotus & DDT are qualified to Brugge. Final Result OPEN

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

2011-03-28 Thread Nicolas G
2011/3/27 Thibaut Barrère > 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 Ruby dans Passenger.

[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 m

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 > > > 2010/8/30 Nicolas Blanco > > 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 install

Re: [RailsFr] rvm problem avec zlib

2010-08-30 Thread Nicolas G
2010/8/30 Nicolas Blanco > 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-get install zlib zlib-devel sur ma Ubuntu. Je vais cherch

[RailsFr] rvm problem avec zlib

2010-08-30 Thread Nicolas G
Bonjour à l'occasion de l'installationd'une nouvelle machine de développement je me suis essay à rvm pour installer deux environnements un de ruby 1.8.7 et un pour ruby . rvm install 1.8.7 rvm install 1.9.2 rvm --create 1@rails2 rvm --create 1@rails3 rvm --default use 1@rails3 j'ai

  1   2   3   >