4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
page 1 / 1
12 results tagged module x
  • cloudposse/eks-cluster/aws | Terraform Registry
    March 1, 2021 at 3:58:28 PM GMT+1 - permalink - archive.org - https://registry.terraform.io/modules/cloudposse/eks-cluster/aws/latest?tab=inputs
    eks module terraform
  • Linux Kernel Module Management 101 | Linux.com

    lsmod
    rmmod
    modprobe

    January 8, 2016 at 11:42:10 AM GMT+1 - permalink - archive.org - https://www.linux.com/learn/tutorials/396770:linux-kernel-module-management-101
    kernel linux module
  • Check incoming update from puppet forge

    Un petit script pour check si les modules ont de nouvelles version dispo (il faut jq)

    #!/bin/bash
    
    modules=$(puppet module list|grep '\(v[0-9]\.[0-9]\.[0-9]\)')
    
    IFS=$'\n'
    for line in $modules; do
        name=$(echo $line|cut -d' ' -f2)
        version=$(echo $line|grep -o '\(v[0-9]\.[0-9]\.[0-9]\)'|sed 's/v//')
        current_version=$(curl -s https://forgeapi.puppetlabs.com/v3/modules/${name}|jq '.current_release.version'|sed 's/"//g')
        if [[ $version == $current_version ]]; then
            echo "OK $name $version $current_version"
        else
            echo "OUTDATED $name $version $current_version"
        fi  
    done
    November 30, 2015 at 4:37:25 PM GMT+1 * - permalink - archive.org - https://links.infomee.fr/?6tdMVA
    bash for forge IFS loop module puppet
  • NGINX 3rd Party Modules | NGINX
    September 22, 2015 at 10:41:32 AM GMT+2 - permalink - archive.org - https://www.nginx.com/resources/wiki/modules/
    module nginx
  • Nginx modules by flavour
    July 18, 2014 at 3:36:32 PM GMT+2 - permalink - archive.org - https://docs.google.com/spreadsheet/ccc?key=0AjuNPnOoex7SdG5fUkhfc3BCSjJQbVVrQTg4UGU2YVE#gid=0
    dotdeb module nginx
  • Forging Great Modules: Standards, Tools and Patterns - PuppetConf 2013

    à regarder à partir de 24 minutes

    March 28, 2014 at 4:56:26 PM GMT+1 - permalink - archive.org - https://www.youtube.com/watch?feature=player_detailpage&list=FLJvYRkbaG8uNnLsDB7c2o2Q&v=LPMGR6auqig#t=1494
    module puppet
  • dalen/puppetdbquery · Puppet Forge
    March 28, 2014 at 9:58:03 AM GMT+1 - permalink - archive.org - https://forge.puppetlabs.com/dalen/puppetdbquery
    module puppet puppetdb
  • Modules by Gareth Rushgrove · Puppet Forge

    Des modules qui ont l'air bien

    March 28, 2014 at 9:54:18 AM GMT+1 - permalink - archive.org - https://forge.puppetlabs.com/garethr
    module puppet
  • Créer un module xchat (python)

    Objectif : tapper /obug <number> dans xchat m'ouvre un onglet dans ff vers l'url du bug

    1) activer le module python dans les options
    2) créer un fichier .py dans /home/arnaud/.xchat2/
    3)
    module_name = "openbuginredmine"
    module_version
    = "1.0"
    __module_description__ = "module to open bug in redmine"

    import os
    import xchat

    def obug(word, word_eol, userdata):
    if len(word) < 2:
    print "Second arg must be the bug number!"
    else:

    xchat.command("NOTICE @%s %s" % (xchat.get_info("channel"), word_eol[1]))

        os.system("firefox https://monurlredmine.com/issues/"+word[1])
    return xchat.EAT_ALL 

    xchat.hook_command("obug", obug, help="/obug <number> open bug in ff")

    Et voilà, plus qu'à reboot le xchat, ou bien /load nomdufichier.py

    ça peut etre appliqué à plein de trucs : pouvoir lancer ce qu'on veut depuis xchat

    November 5, 2013 at 3:07:31 PM GMT+1 - permalink - archive.org - http://xchat.org/docs/xchatpython.html#head-cf24838660500eceef2367deb88df5963483c852
    auto module python redmine xchat
  • Rudy's repository » [Linux] Écriture d’un driver : episode I

    Comment écrire un module très basique chargeable/déchargeable (insmod/rmmod) pour le noyau de linux

    April 15, 2013 at 6:45:20 PM GMT+2 - permalink - archive.org - http://etudiant.univ-mlv.fr/~rweber/?p=48
    c kernel module noyau
  • Quartz 2 tutorial on JBoss AS 7 - jboss quartz - JBoss application server tutorials
    October 25, 2012 at 3:51:13 PM GMT+2 - permalink - archive.org - http://www.mastertheboss.com/jboss-quartz/quartz-2-tutorial-on-jboss-as-7
    jboss module quartz
  • JBOSS 7 et gestion des modules
    October 25, 2012 at 3:50:26 PM GMT+2 - permalink - archive.org - http://blog.axopen.com/2012/02/jboss-7-et-gestion-des-modules/
    jboss module
Links per page: 20 50 100
page 1 / 1
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation