Searched refs:conf (Results 1 - 25 of 1456) sorted by relevance

1234567891011>>

/freebsd-10-stable/contrib/openresolv/
H A Dresolvconf.conf2 # See resolvconf.conf(5) for details
4 resolv_conf=/etc/resolv.conf
/freebsd-10-stable/release/tools/
H A Dvagrant-vmware.conf3 # $FreeBSD: stable/10/release/tools/vagrant-vmware.conf 326264 2017-11-27 15:12:14Z gjb $
6 . ${WORLDDIR}/release/tools/vagrant.conf
12 echo 'firstboot_pkgs_list="sudo rsync open-vm-tools-nox11"' >> ${DESTDIR}/etc/rc.conf
14 echo 'vmware_guest_vmblock_enable="YES"' >> ${DESTDIR}/etc/rc.conf
15 echo 'vmware_guest_vmhgfs_enable="YES"' >> ${DESTDIR}/etc/rc.conf
16 echo 'vmware_guest_vmmemctl_enable="YES"' >> ${DESTDIR}/etc/rc.conf
17 echo 'vmware_guest_vmxnet_enable="YES"' >> ${DESTDIR}/etc/rc.conf
18 echo 'vmware_guestd_enable="YES"' >> ${DESTDIR}/etc/rc.conf
22 rm -f ${DESTDIR}/etc/resolv.conf
H A Dvagrant-virtualbox.conf3 # $FreeBSD: stable/10/release/tools/vagrant-virtualbox.conf 326264 2017-11-27 15:12:14Z gjb $
6 . ${WORLDDIR}/release/tools/vagrant.conf
12 echo 'firstboot_pkgs_list="sudo rsync virtualbox-ose-additions"' >> ${DESTDIR}/etc/rc.conf
13 echo 'vboxguest_enable="YES"' >> ${DESTDIR}/etc/rc.conf
14 echo 'vboxservice_enable="YES"' >> ${DESTDIR}/etc/rc.conf
18 rm -f ${DESTDIR}/etc/resolv.conf
H A Dec2.conf3 # $FreeBSD: stable/10/release/tools/ec2.conf 326264 2017-11-27 15:12:14Z gjb $
11 # Set to a list of third-party software to enable in rc.conf(5).
41 echo 'growfs_enable="YES"' >> ${DESTDIR}/etc/rc.conf
44 echo 'ifconfig_DEFAULT="SYNCDHCP"' >> ${DESTDIR}/etc/rc.conf
48 echo 'sshd_enable="YES"' >> ${DESTDIR}/etc/rc.conf
53 echo 'firstboot_pkgs_list="awscli"' >> ${DESTDIR}/etc/rc.conf
58 echo 'debug.trace_on_panic=1' >> ${DESTDIR}/etc/sysctl.conf
59 echo 'debug.debugger_on_panic=0' >> ${DESTDIR}/etc/sysctl.conf
60 echo 'kern.panic_reboot_wait_time=0' >> ${DESTDIR}/etc/sysctl.conf
63 echo 'autoboot_delay="-1"' >> ${DESTDIR}/boot/loader.conf
[all...]
H A Dopenstack.conf11 # Set to a list of third-party software to enable in rc.conf(5).
15 echo 'sshd_enable="YES"' >> ${DESTDIR}/etc/rc.conf
16 echo 'ifconfig_DEFAULT="SYNCDHCP"' >> ${DESTDIR}/etc/rc.conf
22 rm -f ${DESTDIR}/etc/resolv.conf
H A Dazure.conf11 # Set to a list of third-party software to enable in rc.conf(5).
20 echo 'sshd_enable="YES"' >> ${DESTDIR}/etc/rc.conf
21 echo 'ifconfig_hn0="SYNCDHCP"' >> ${DESTDIR}/etc/rc.conf
22 echo 'waagent_enable="YES"' >> ${DESTDIR}/etc/rc.conf
23 echo 'console="comconsole vidconsole"' >> ${DESTDIR}/boot/loader.conf
24 echo 'comconsole_speed="115200"' >> ${DESTDIR}/boot/loader.conf
26 rm -f ${DESTDIR}/etc/resolv.conf
/freebsd-10-stable/usr.sbin/pc-sysinstall/backend-query/
H A Dquery-langs.sh28 cat ${PROGDIR}/conf/avail-langs
/freebsd-10-stable/crypto/openssl/crypto/conf/
H A Dconf_api.h63 # include <openssl/conf.h>
70 CONF_VALUE *_CONF_new_section(CONF *conf, const char *section);
72 CONF_VALUE *_CONF_get_section(const CONF *conf, const char *section);
74 STACK_OF(CONF_VALUE) *_CONF_get_section_values(const CONF *conf,
77 int _CONF_add_string(CONF *conf, CONF_VALUE *section, CONF_VALUE *value);
78 char *_CONF_get_string(const CONF *conf, const char *section,
80 long _CONF_get_number(const CONF *conf, const char *section,
83 int _CONF_new_data(CONF *conf);
84 void _CONF_free_data(CONF *conf);
H A Dtest.c1 /* crypto/conf/test.c */
61 #include <openssl/conf.h>
66 LHASH *conf; local
73 conf = CONF_load(NULL, "ssleay.cnf", &eline);
74 if (conf == NULL) {
80 lh_stats(conf, stdout);
81 lh_node_stats(conf, stdout);
82 lh_node_usage_stats(conf, stdout);
84 s = CONF_get_string(conf, NULL, "init2");
87 s = CONF_get_string(conf, NUL
[all...]
H A Dconf_lib.c63 #include <openssl/conf.h>
73 void CONF_set_nconf(CONF *conf, LHASH_OF(CONF_VALUE) *hash) argument
78 default_CONF_method->init(conf);
79 conf->data = hash;
93 LHASH_OF(CONF_VALUE) *CONF_load(LHASH_OF(CONF_VALUE) *conf, const char *file,
109 ltmp = CONF_load_bio(conf, in, eline);
116 LHASH_OF(CONF_VALUE) *CONF_load_fp(LHASH_OF(CONF_VALUE) *conf, FILE *fp,
125 ltmp = CONF_load_bio(conf, btmp, eline);
131 LHASH_OF(CONF_VALUE) *CONF_load_bio(LHASH_OF(CONF_VALUE) *conf, BIO *bp,
137 CONF_set_nconf(&ctmp, conf);
244 NCONF_free(CONF *conf) argument
251 NCONF_free_data(CONF *conf) argument
258 NCONF_load(CONF *conf, const char *file, long *eline) argument
269 NCONF_load_fp(CONF *conf, FILE *fp, long *eline) argument
283 NCONF_load_bio(CONF *conf, BIO *bp, long *eline) argument
308 NCONF_get_string(const CONF *conf, const char *group, const char *name) argument
329 NCONF_get_number_e(const CONF *conf, const char *group, const char *name, long *result) argument
353 NCONF_dump_fp(const CONF *conf, FILE *out) argument
367 NCONF_dump_bio(const CONF *conf, BIO *out) argument
[all...]
/freebsd-10-stable/tools/regression/geom/ConfCmp/
H A DMakefile25 ./${PROG} a1.conf a1.conf
26 ./${PROG} a1.conf a1a.conf
27 if ./${PROG} a1.conf a1b.conf > /dev/null 2>&1 ; then exit 1 ; fi
28 if ./${PROG} a1.conf a1c.conf > /dev/null 2>&1 ; then exit 1 ; fi
29 if ./${PROG} a1.conf a1d.conf > /de
[all...]
/freebsd-10-stable/contrib/hyperv/tools/scripts/
H A Dhv_get_dns_info2 # This script parses /etc/resolv.conf to retrive DNS information.
7 #if test -r /etc/resolv.conf
9 # awk -- '/^nameserver/ { print $2 }' /etc/resolv.conf
11 cat /etc/resolv.conf 2>/dev/null | awk '/^nameserver/ { print $2 }'
/freebsd-10-stable/usr.sbin/bsdinstall/scripts/
H A Dconfig32 cat $BSDINSTALL_TMPETC/rc.conf.* >> $BSDINSTALL_TMPETC/rc.conf
33 rm $BSDINSTALL_TMPETC/rc.conf.*
37 cat $BSDINSTALL_TMPBOOT/loader.conf.* >> $BSDINSTALL_TMPBOOT/loader.conf
38 rm $BSDINSTALL_TMPBOOT/loader.conf.*
39 df -t zfs $BSDINSTALL_CHROOT > /dev/null && echo "zfs_load=\"YES\"" >> $BSDINSTALL_TMPBOOT/loader.conf
/freebsd-10-stable/etc/devd/
H A DMakefile8 FILES+= apple.conf
13 FILES+= asus.conf
16 FILES+= hyperv.conf
20 FILES+= uath.conf usb.conf
24 FILES+= zfs.conf
/freebsd-10-stable/crypto/openssl/crypto/lhash/
H A Dlh_test.c66 LHASH *conf; local
70 conf = lh_new(lh_strhash, strcmp);
81 lh_insert(conf, p);
84 lh_node_stats(conf, stdout);
85 lh_stats(conf, stdout);
86 lh_node_usage_stats(conf, stdout);
/freebsd-10-stable/usr.sbin/pw/tests/
H A Dpw_config_test.sh9 ${PW} useradd -D -C ${HOME}/foo.conf
10 atf_check -o file:$(atf_get_srcdir)/pw.conf \
11 cat ${HOME}/foo.conf
17 ${PW} useradd -D -C ${HOME}/foo.conf \
19 atf_check -o file:$(atf_get_srcdir)/pw-modified.conf \
20 cat ${HOME}/foo.conf
/freebsd-10-stable/etc/bluetooth/
H A DMakefile5 FILES= hcsecd.conf hosts protocols
6 FILESMODE_hcsecd.conf= 600
/freebsd-10-stable/etc/newsyslog.conf.d/
H A DMakefile5 BINDIR= /etc/newsyslog.conf.d
10 FILES+= opensm.conf
/freebsd-10-stable/etc/periodic/security/
H A D410.logincheck32 if [ -r /etc/defaults/periodic.conf ]
34 . /etc/defaults/periodic.conf
45 echo 'Checking login.conf permissions:'
46 if [ -G /etc/login.conf -a -O /etc/login.conf ]; then
49 echo "Bad ownership of /etc/login.conf"
/freebsd-10-stable/crypto/openssl/crypto/evp/
H A Devp_acnf.c62 #include <openssl/conf.h>
/freebsd-10-stable/etc/defaults/
H A DMakefile5 FILES= devfs.rules periodic.conf rc.conf
10 FILES+= bluetooth.device.conf
/freebsd-10-stable/usr.bin/iscsictl/
H A Discsictl.h39 #define DEFAULT_CONFIG_PATH "/etc/iscsi.conf"
63 struct conf *t_conf;
81 struct conf { struct
102 struct conf *conf_new(void);
103 struct conf *conf_new_from_file(const char *path);
104 void conf_delete(struct conf *conf);
105 void conf_verify(struct conf *conf);
107 struct target *target_new(struct conf *con
[all...]
/freebsd-10-stable/contrib/wpa/src/ap/
H A Dap_config.c99 struct hostapd_config *conf; local
122 conf = os_zalloc(sizeof(*conf));
124 if (conf == NULL || bss == NULL) {
127 os_free(conf);
134 os_free(conf);
141 conf->num_bss = 1;
142 conf->bss = bss;
144 conf->beacon_int = 100;
145 conf
291 hostapd_setup_wpa_psk(struct hostapd_bss_config *conf) argument
386 hostapd_config_free_bss(struct hostapd_bss_config *conf) argument
529 hostapd_config_free(struct hostapd_config *conf) argument
609 hostapd_get_psk(const struct hostapd_bss_config *conf, const u8 *addr, const u8 *prev_psk) argument
[all...]
/freebsd-10-stable/contrib/ofed/management/opensm/opensm/
H A Dosm_prtn_config.c78 static int partition_create(unsigned lineno, struct part_conf *conf, argument
98 conf->p_prtn = osm_prtn_make_new(conf->p_log, conf->p_subn,
100 if (!conf->p_prtn)
103 if (!conf->p_subn->opt.qos && conf->sl != OSM_DEFAULT_SL) {
104 OSM_LOG(conf->p_log, OSM_LOG_DEBUG, "Overriding SL %d"
107 conf->sl, OSM_DEFAULT_SL, name);
108 conf
135 partition_add_flag(unsigned lineno, struct part_conf *conf, char *flag, char *val) argument
192 partition_add_port(unsigned lineno, struct part_conf *conf, char *name, char *flag) argument
287 struct part_conf *conf = &part; local
299 flush_part_conf(struct part_conf *conf) argument
305 parse_part_conf(struct part_conf *conf, char *str, int lineno) argument
397 struct part_conf *conf = NULL; local
[all...]
/freebsd-10-stable/share/man/man5/
H A DMakefile14 devfs.conf.5 \
33 libmap.conf.5 \
37 mailer.conf.5 \
38 make.conf.5 \
44 nsmb.conf.5 \
45 nsswitch.conf.5 \
49 periodic.conf.5 \
52 portsnap.conf.5 \
56 rc.conf.5 \
57 rctl.conf
[all...]

Completed in 331 milliseconds

1234567891011>>