search for: configfiles

Displaying 20 results from an estimated 624 matches for "configfiles".

2009 Feb 01
2
Using arrays to generate parameters
My external node classifier returns some arrays in the list of parameters. Example output (names have been changed to protect the innocent): $ ./node_classifier a.b.com --- %YAML:1.0 "classes": ["class1", "class2", "class3"] "parameters": "hostname": "a" "name": "a" "domain":
2019 Jul 20
2
samba-tool domain backup online && --configfile
On https://wiki.samba.org/index.php/Back_up_and_Restoring_a_Samba_AD_DC#Online_DC_backup there is a comment ?you may want to specify a --configfile option so that the correct smb.conf settings get included in the backup.? Why does samba-tool not pick up the one it (or other parts of Samba) is compiled with automatically? Like `smbd -b | grep "CONFIGFILE" | sed -n -E
2012 Sep 26
1
Samba4 spawns many /usr/sbin/smbd --configfile
I have no idea why, occasionally one of my samba4 servers won't respond to my RSAT tools on windows 7. I check the server and when I do a ps -aux I see many lines just like the following: root 28073 0.0 0.0 2132 52 ? S 00:11 0:00 /bin/sleep 999999999 3000063 28176 0.0 0.4 87604 7144 ? S 00:22 0:00 /usr/sbin/smbd --configfile
2020 Mar 31
1
Ways to make "smbd" use less memory?
I?m looking for ways to make a ?smbd? daemon use less memory. Typically on our system each process uses 160-200MB virtual memory with ~120-140MB as RSS. Now with ~1400 such processes (and clients connected) this uses a lot of memory? Even though some may be shared. It doesn?t look like a memory leak though since it?s pretty stable at those levels. But it still feels pretty bloated... This
2015 Oct 16
1
[PATCH] inspect: Include more information for augeas parse errors (RHBZ#1229119)
...ct-fs-unix.c @@ -1985,7 +1985,6 @@ inspect_with_augeas (guestfs_h *g, struct inspect_fs *fs, CLEANUP_FREE char *pathexpr = NULL; CLEANUP_FREE_STRING_LIST char **matches = NULL; char **match; - size_t len; /* Security: Refuse to do this if a config file is too large. */ for (i = 0; configfiles[i] != NULL; ++i) { @@ -2023,16 +2022,33 @@ inspect_with_augeas (guestfs_h *g, struct inspect_fs *fs, goto out; /* Check that augeas did not get a parse error for any of the configfiles, - * otherwise we are silently missing information. */ + * otherwise we are silently missing informa...
2004 Aug 06
5
capturing pid from command line
On Mon, 2003-11-03 at 21:53, Dave St John wrote: > Anyone know of or how to capture the pid via the command line in bash? pidof ??? $ pidof httpd 827 825 824 788 -- Drew <p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to 'icecast-request@xiph.org' containing only
2003 Jun 25
1
Problems using "configfile" dhcp option with pxelinux
Hello, I have been trying to use the "configfile" option in the DHCP response to specify a specific config file when booting. When I specify this in my /etc/dhcpd.conf file the kernel and initrd are transferred, but the kernel does not boot. I am using v2.04 of pxelinux. I would appreciate any help anyone might be able to give. If I remove the "configfile" dhcp option and
2015 Oct 15
1
[PATCH v2] inspect: check for errors in files parsed with augeas (RHBZ#1229119)
...83,9 @@ inspect_with_augeas (guestfs_h *g, struct inspect_fs *fs, int64_t size; int r; CLEANUP_FREE char *pathexpr = NULL; + CLEANUP_FREE_STRING_LIST char **matches = NULL; + char **match; + size_t len; /* Security: Refuse to do this if a config file is too large. */ for (i = 0; configfiles[i] != NULL; ++i) { @@ -2019,6 +2022,22 @@ inspect_with_augeas (guestfs_h *g, struct inspect_fs *fs, if (guestfs_aug_load (g) == -1) goto out; + /* Check that augeas did not get a parse error for any of the configfiles, + * otherwise we are silently missing information. */ + matches =...
2012 Apr 03
3
[PATCH] xl: Don't require a config file for cpupools
Since the key information can be fairly simply put on the command-line, there''s no need to require an actual config file. Also improve the help to cross-reference the xlcpupool.cfg manpage. Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com> diff -r 30cc13e25e01 -r 0fb728d56bae docs/man/xl.pod.1 --- a/docs/man/xl.pod.1 Tue Apr 03 19:02:19 2012 +0100 +++ b/docs/man/xl.pod.1
2019 Jul 22
1
samba-tool domain backup online && --configfile
Hi Tim, then I believe there is a bug. I did not specify the option and it used /etc/smb.conf rather than the correct /etc/samba/smb.conf. I was running a local backup on DC with Louis build 4.10.6 on ubuntu 18.04.2. Shall I open a ticket? Best Regards, Joachim -----Urspr?ngliche Nachricht----- Von: samba <samba-bounces at lists.samba.org> Im Auftrag von Tim Beale via samba Gesendet:
2020 Nov 01
0
4.13.1 make test failed
Hello I try today to install samba 4.13.1 ? ./configure run without error Make run without error Make Check Failed Debian 10.6 Also all required Packages are installed -- # cat summary = Failed tests = == samba4.blackbox.demote-saveddb == command: PYTHON=python3 /usr/src/samba-4.13.1/testprogs/blackbox/demote-saveddb.sh $PREFIX_ABS/demote
2015 Mar 16
0
[PATCH] inspection: add support for systemd .mount files
...s-unix.c @@ -96,6 +96,9 @@ static char *resolve_fstab_device (guestfs_h *g, const char *spec, Hash_table *md_map, enum inspect_os_type os_type); static int inspect_with_augeas (guestfs_h *g, struct inspect_fs *fs, const char **configfiles, int (*f) (guestfs_h *, struct inspect_fs *)); +static int inspect_with_augeas2 (guestfs_h *g, struct inspect_fs *fs, const char **configfiles, int (*f) (guestfs_h *, struct inspect_fs *, const char *)); +static int check_systemd_mounts (guestfs_h *g, struct inspect_fs *fs); +static int check_syste...
2015 Mar 16
2
[PATCH] RFE: Inspection should support systemd mount units
Adds support for systemd .mount files, uses Augeas to extract mount points. Fixes RHBZ#1113153. Maros Zatko (1): inspection: add support for systemd .mount files src/inspect-fs-unix.c | 240 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 240 insertions(+) -- 1.9.3
2014 Nov 28
0
pxelinux efi64 boot woes on hyper-v gen 2
> if option arch = 00:00 { > filename "pxelinux.0"; > option pxelinux.configfile "pxelinux.cfg/bios"; > } else if option arch = 00:06 { > filename "bootia32.efi"; > #option bootfile-name "bootia32.efi"; > option pxelinux.configfile "pxelinux.cfg/efi32"; > } else if option arch = 00:07 { > filename
2018 Sep 10
1
Type enforcement / mechanism not clear
Am 09.09.2018 um 16:19 schrieb Daniel Walsh <dwalsh at redhat.com>: > > On 09/09/2018 09:43 AM, Leon Fauster via CentOS wrote: >> Am 09.09.2018 um 14:49 schrieb Daniel Walsh <dwalsh at redhat.com>: >>> On 09/08/2018 09:50 PM, Leon Fauster via CentOS wrote: >>>> Any SElinux expert here - briefly: >>>> >>>> # getenforce
2005 Sep 26
3
PXEboot: can't find configfile on tftpd server
Hello, I've got several machines which I'm trying to netboot, the setup is a bootserver using dhcpd3 and tftpd-hpa. When a machine boots up, it gets an ip address and downloads pxelinux.0 from the server, then it starts searching for pxelinux.cfg/[MACADDRESS] pxelinux.cfg/0A0000F0 and so on. On the server side I see in the syslog the client's DHCP-request and the client downloading
2004 Sep 22
2
Grandstream bin cfg.txt generator
Hi, I needed to create config files for downloading to Grandstream devices and made a little script for it. It seems to work fine for the HT486. The script needs a config file (cfg.in) which is in this format: P2 = blah P10 = hrm ...etc... The configfile may contain comments (starting with '#') and empty lines. Mind that the 'gnkey=0b82' shouldn't be in the configfile, as
2010 Nov 03
5
pxelinux magic options 208
I have 2 groups of machines, and within each group the pxelinux menu configuration is standard. It would be great to have 2 configuration files rather than one for each machine. I found the pxelinux magic option configfile (209) in http://syslinux.zytor.com/wiki/index.php/PXELINUX and it suggests for ISC dhcpd: site-option-space "pxelinux"; option pxelinux.magic
2003 Jun 12
2
Segmentation fault on "reload"
Whenever I issue the reload command, asterisk crashes. Below is the output I get from (gdb) bt Any help is appreciated. *************************************************************** *CLI> reload == Parsing '/etc/asterisk/manager.conf': Found == Parsing '/etc/asterisk/enum.conf': Found == Parsing '/etc/asterisk/rtp.conf': Not found (No such file or
2017 Jul 06
0
pxechn.c32 not working when coming from iPXE 1.0.0
Hello, I?m running a PXE server with syslinux-6.03 and something not right happens when a iPXE clients loads pxechn.c32 to get in a WDS server: it fails. I?ve discovered this when we started deploying oVirt in our infrastructure and QEMU calls SeaBIOS with iPXE for network booting. All other clients works just fine. Physical machines and VMware VM?s. I don?t know if this is a known bug or not,