Un petit questionnaire pour aider Framasoft.
— Permalink
Site original : shaarli-Links
Un petit questionnaire pour aider Framasoft.
— Permalink
Oooh ça c'est pas mal.
Mettre en gras le début des mots pour faciliter la lecture.
Édit : https://github.com/axoletl/not-br
voir : https://dukeart.netlib.re/links/?otLOzQ
via https://lehollandaisvolant.net/?id=20220520135850
— Permalink
Je rajoute aussi que le serveur de DNS 8.8.8.8 est codé en dur dans les applications systèmes.
— Permalink
De la bonne musique de Bretagne.
— Permalink
Ça pue
— Permalink
Bon anniversaire !
:-)
— Permalink
Pour récupérer des données vault dans AWX :
# dans le docker de AWX
/usr/bin/awx-manage shell
from awx.main.models.credential import Credential
Credential.objects.all()
Credential.objects.get(name='<NOM_CLÉ>').get_input('<NOM_CHAMP>')
https://shaarli.guiguishow.info/?IjArIg
https://shaarli.guiguishow.info/?Em6wqA
http://shaarli.guiguishow.info/?c-aKjw
https://www.rsyslog.com/doc/v8-stable/configuration/modules/omfwd.html
template (name="chemin-prog1" type="string" string="/var/log/distant/%$year:::%/%$month:::%/%$day:::%/bidule/programme1.log")
template (name="chemin-prog2" type="string" string="/var/log/distant/%$year:::%/%$month:::%/%$day:::%/bidule/programme2.log")
if $hostname == 'machine1' or $hostname == 'machine2' then {
if $programname == 'prog1' then {
action(type="omfile" dynaFile="chemin-prog1")
stop
}
if $programname == 'prog2' then {
action(type="omfile" dynaFile="chemin-prog2")
stop
}
}
Pour merger tout les commits d'une branche de teste en un commit sur une branche de dev :
git checkout develop
git merge --squash <branche_de_teste>
git commit