This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@ IN A 91.121.155.15 | |
@ IN AAAA 2001:41d0:1:dc0f::1 | |
www IN A 91.121.155.15 | |
www IN AAAA 2001:41d0:1:dc0f::1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FreeBSD 10.0-RELEASE-p10 (GENERIC) #0: Mon Oct 20 12:42:25 UTC 2014 | |
. _///_, | |
. / ` ' '> | |
) o' __/_'> | |
( / _/ )_\'> | |
' "__/ /_/\_> | |
____/_/_/_/ | |
/,---, _/ / | |
"" /_/_/_/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
257/1018/1275 mbufs in use (current/cache/total) | |
256/626/882/125232 mbuf clusters in use (current/cache/total/max) | |
256/625 mbuf+clusters out of packet secondary zone in use (current/cache) | |
0/34/34/62615 4k (page size) jumbo clusters in use (current/cache/total/max) | |
0/0/0/18552 9k jumbo clusters in use (current/cache/total/max) | |
0/0/0/10435 16k jumbo clusters in use (current/cache/total/max) | |
576K/1642K/2218K bytes allocated to network (current/cache/total) | |
269/17/256 requests for mbufs denied (mbufs/clusters/mbuf+clusters) | |
0/0/0 requests for mbufs delayed (mbufs/clusters/mbuf+clusters) | |
0/0/0 requests for jumbo clusters delayed (4k/9k/16k) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
In translation phase 6, the multibyte character sequences specified by any sequence of | |
adjacent character and identically-prefixed string literal tokens are concatenated into a | |
single multibyte character sequence. If any of the tokens has an encoding prefix, the | |
resulting multibyte character sequence is treated as having the same prefix; otherwise, it | |
is treated as a character string literal. Whether differently-prefixed wide string literal | |
tokens can be concatenated and, if so, the treatment of the resulting multibyte character | |
sequence are implementation-defined. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#search ovh.net | |
#nameserver 213.186.33.99 | |
nameserver ::1 | |
nameserver 127.0.0.1 | |
options edns0 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# update (pull) some Git repos in a given directory. | |
# | |
# config example: | |
# daily_git_pull_enable="YES" | |
# daily_git_pull_user="alex" | |
# daily_git_pull_dir="/home/alex/github" | |
# If there is a global system configuration file, suck it in. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2014-09-23 15:41:54 #69644(controller) dns_resolver_init: cannot parse resolv.conf and no nameservers defined, so no ways to resolve addresses | |
2014-09-23 15:41:54 #69646(normal) fork_worker: starting normal process 69646 | |
2014-09-23 15:41:54 #69644(controller) json_config_fin_cb: no data read | |
2014-09-23 15:41:54 #69647(normal) fork_worker: starting normal process 69647 | |
2014-09-23 15:41:54 #69646(normal) json_config_fin_cb: no data read | |
2014-09-23 15:41:54 #69646(normal) rdns_resolver_parse_resolv_conf: rdns_resolver_parse_resolv_conf: cannot parse line: nameserver ::1? | |
2014-09-23 15:41:54 #69646(normal) dns_resolver_init: cannot parse resolv.conf and no nameservers defined, so no ways to resolve addresses | |
2014-09-23 15:41:54 #69647(normal) json_config_fin_cb: no data read | |
2014-09-23 15:41:54 #69647(normal) rdns_resolver_parse_resolv_conf: rdns_resolver_parse_resolv_conf: cannot parse line: nameserver ::1? | |
2014-09-23 15:41:54 #69647(normal) dns_resolver_init: cannot parse resolv.conf and no nameservers defined, |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# nsd.conf -- the NSD(8) configuration file, nsd.conf(5). | |
# | |
# Copyright (c) 2001-2011, NLnet Labs. All rights reserved. | |
# | |
# See LICENSE for the license. | |
# | |
# options for the nsd server | |
server: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Generated by local-unbound-setup | |
server: | |
username: unbound | |
directory: /var/unbound | |
chroot: /var/unbound | |
pidfile: /var/run/local_unbound.pid | |
auto-trust-anchor-file: /var/unbound/root.key | |
# from old unbound port config. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
struct json_field { | |
const char* field; | |
int is_here; | |
}; | |
int main(void) | |
{ | |
/* Met 0 ou 1 pour simuler l'absence/présence du champ */ |