search for: basedir

Displaying 20 results from an estimated 394 matches for "basedir".

Did you mean: base_dir
2008 Oct 08
10
The puppet equivalent of mkdir -p
Hi all, I''d like to add a several directories and I can''t seem to do it with a single "file" directive. Say /home/jeff exists and I want to add /home/jeff/src/my/dir/path I tried: file { "/home/jeff/src/my/dir/path": path => "/home/jeff/src/my/dir/path", mode => 0755, owner => jeff, group => jeff, ensure =>
2001 Apr 07
1
samba on NetBSD - some patches
...+++ Makefile.in Sun Sep 3 06:23:06 2000 @@ -26,10 +26,12 @@ BINDIR = @bindir@ # we don't use sbindir because we want full compatibility with # the previous releases of Samba -SBINDIR = @bindir@ +SBINDIR = @sbindir@ LIBDIR = @libdir@ VARDIR = @localstatedir@ MANDIR = @mandir@ +ETCDIR?= $(BASEDIR)/etc +LOGDIR?= $(BASEDIR)/log SAMBABOOK = @sambabook@ # The permissions to give the executables @@ -38,12 +40,12 @@ # set these to where to find various files # These can be overridden by command line switches (see smbd(8)) # or in smb.conf (see smb.conf(5)) -SMBLOGFILE = $(VARDIR)/log.smb -...
2011 Sep 17
1
vfs_shadow_copy2 doesn't seem to work with basedir of /
...a bug. This config works: mattcen at adam:SambaTest$ cat works3/smb.conf [SambaTest] comment = SambaTest writable = yes path = /srv/SambaTest/share #vfs objects = shadow_copy vfs objects = shadow_copy2 shadow:snapdir = /mnt/dates shadow:basedir = /srv mattcen at adam:SambaTest$ ls /srv SambaTest aquota.group aquota.user archive bittorrent cvs lost+found lxc nfs share tftp time_machine tmp mattcen at adam:SambaTest$ ls /mnt/dates/@GMT-* /mnt/dates/@GMT-2011.09.16-22.44.13: SambaTest /mnt/dates/@GMT-2011.09.16-22.44...
2002 Mar 06
1
Possible bug in 2.2.3a source/script/installbin.sh (with patch)
Hi all, the file samba-2.2.3a/source/script/installbin.sh has a rather odd blindspot. It doesn't honor the --with-privatedir= option to ./configure it just blindly uses $BASEDIR/private instead. I think the fix would be:- a) move directory creation out of installbin.sh altogehter (after all what's the installdirs: target for in the Makefile?) OR b) add an extra parameter to installbin.sh thusly:- *** source/script/installbin.sh Fri Jan 12 19:28:02 2001 --- sourc...
2002 Mar 27
2
Problem with ssh-keygen
...egd application SMCossh openssh application SMCprl561 perl application SMCprngd prngd application SMCzlib zlib # pkginfo -l SMCegd SMCossh SMCprl561 SMCprngd SMCzlib PKGINST: SMCegd NAME: egd CATEGORY: application ARCH: sparc VERSION: 0.8 BASEDIR: /usr/local VENDOR: Brian Warner PSTAMP: Steve Christensen INSTDATE: Mar 26 2002 18:15 EMAIL: steve at smc.vnet.net STATUS: completely installed FILES: 25 installed pathnames 2 shared pathnames 4 directories 4 exec...
2003 Mar 19
1
Patch for relocatable installs
...################################################# -DESTDIR= - prefix=/usr/local exec_prefix=${prefix} mandir=${prefix}/man @@ -704,29 +702,29 @@ install: installbin installman installscripts installcp installswat installdirs: - $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(DESTDIR)/$(BASEDIR) - $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(DESTDIR)/$(SBINDIR) - $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(DESTDIR)/$(BINDIR) - $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(DESTDIR)/$(LIBDIR) - $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(DESTDIR)/$(VARDI...
2012 Sep 22
0
shadow:snapdir/basedir's are they used?
...size = 4096 store dos attributes = yes map acl inherit = yes inherit acls = yes comment = Domain User's Home Documents path = /home/%D/Documents/%U vfs objects = recycle, readahead, shadow_copy2 recycle: keeptree = true shadow:snapdir = /home/.snapdir shadow:basedir = /home I thought, by telling it the base dir (/home -- which is also exported, BTW and the place where I have snapshots mounted), it would look for the Doc dir relative to the 'path' from the basedir. What I see Windows doing is looking for it at the root of the share. Say I have a '...
2002 Jun 21
1
samba-2.2.5 -- a minor "make install" problem and 2 suggestions
...@@ -687,32 +687,32 @@ @echo Linking $@ @$(CC) $(FLAGS) -o $@ $(TDBBACKUP_OBJ) -install: installbin installman installscripts installcp installswat +install: installbin installman installscripts installcp @INSTALL_SWAT@ installdirs: - $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(BASEDIR) - $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(SBINDIR) - $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(BINDIR) - $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(LIBDIR) - $(SHELL) $(srcdir)/install-sh -d -m $(INSTALLPERMS) $(VARDIR) - $(SHELL) $(srcdir)/install-sh -d -m $(I...
2015 Dec 04
1
Problem with fallback on 2.31 on Windows XP
I got most of my Icecast problems worked out, with one exception: If I want to locate any file or directory on another drive in Windows, how is that path specified? For instance, if I change <basedir> to D:\Someplace and I set <CHRoot> to 1 to accommodate this, what's the proper syntax for the <basedir> directive? Is it: <basedir>D:/Someplace</basedir> or maybe <basedir>/d/Someplace</basedir> or can the system root not be moved off drive C?
2023 Oct 10
1
Deleting voicemail by program
...--------------------------------------------- # Description: # Author: John Harragin Monroe-Woodbury CSD # Created at: Thu Nov 6 12:27:35 EST 2008 # # Copyright: None. Modify and use however you like... # #---------------------------------------------------------------------- # Configure section: BASEDIR=/var/spool/asterisk/voicemail/default/ # default context MINSIZE=12000 # 1.5 seconds #--------------------------------------------------------------subroutines: ProcessDir () { lastfile="" delcnt=0 for file in $(ls -A...
2011 Nov 12
2
dev.new() within a loop
...ting plot_raw which invokes dev.new(..) all windows come out blank whereas if I execute each file outside of a loop then I can see the plots properly. What's wrong here? Thanks in advance, Best regards, Giovanni # given a directory name, it will iterate all files that match the given pattern #basedir <- "/Users/bravegag/code/asl11/data/2k-r1-test-20111111_data/" basedir <- "/Users/bravegag/code/asl11/data/nclients_2_128-20111110_data/" pattern <- paste("logs.*cl\\-.*mw\\-.*db\\-.*\\-client\\.dat",sep="") all_files <- dir(path=basedir, pattern=...
2015 Nov 29
5
Problem with fallback on 2.31 on Windows XP
...<!-- set the mountpoint for a shoutcast source to use, the default if not specified is /stream but you can change it here if an alternative is wanted or an extension is required <shoutcast-mount>/backup</shoutcast-mount> --> <paths> <!-- basedir is only used if chroot is enabled --> <basedir>./</basedir> <!-- Note that if <chroot> is turned on below, these paths must both be relative to the new root, not the original root --> <logdir>./logs</logdir> <we...
2010 Nov 09
1
make quicktest failed
...samba.org/index.php/Samba4/HOWTO My git is also today. == samba4.rpc.echo on ncacn_ip_tcp with validate and --option=socket:testnonblock=True --option=torture:quick=yes -k yes(dc) == command: bin/smbtorture --configfile=$SMB_CONF_PATH --maximum-runtime=$SELFTEST_MAXTIME --target=$SELFTEST_TARGET --basedir=$SELFTEST_TMPDIR --option=torture:progress=no --format=subunit --option=torture:quick=yes ncacn_ip_tcp:$SERVER[validate] --option=socket:testnonblock=True --option=torture:quick=yes -k yes -U$USERNAME%$PASSWORD -W $DOMAIN RPC-ECHO $LOADLIST 2>&1 | ../selftest/filter-subunit --fail-on-empty -...
2009 Aug 31
2
write file to date-stamped folder
Hello, I would like to be able to write all files produced on one day to an output directory with that date stamp, or alternatively stamp the date in the filename. So that if i run the same code the next day the files will not be overwritten. here's what i have to start with: baseDir = getwd() outputDir = paste(baseDir,"/OutputData-", Sys.Date(),sep="") and lets say i want to write the table "test.table" to a file: write.table(test.table, "test.table.txt", sep="\t") How do i make this write to outputDir? Thanks. -- View thi...
2018 Aug 02
3
Can't write to a samba share mounted as an AD user
...= no qbox = no public = yes invalid users = "guest" read list = @"everyone" write list = "admin" valid users = "root",@"everyone","admin" inherit permissions = yes shadow:snapdir = /share/CACHEDEV1_DATA/_.share/Multimedia/.snapshot shadow:basedir = /share/CACHEDEV1_DATA/Multimedia shadow:sort = desc shadow:format = @GMT-%Y.%m.%d-%H:%M:%S smb encrypt = disabled strict allocate = yes streams_depot:check_valid = yes mangled names = yes [Download] comment = System default share path = /share/CACHEDEV1_DATA/Download browsable = yes oplocks = ye...
2012 Dec 08
20
[Bug 2050] New: Support XDG basedir specification
https://bugzilla.mindrot.org/show_bug.cgi?id=2050 Bug ID: 2050 Summary: Support XDG basedir specification Classification: Unclassified Product: Portable OpenSSH Version: -current Hardware: Other OS: Linux Status: NEW Severity: enhancement Priority: P5 Component: Miscellaneous Assignee: u...
2006 May 26
0
setup problem, every request trys to download dispatch.fcgi
Has anyone ever seen it where every request tries to download a fcgi file but marked as a .rb file? Im running LightTPD 1.4, Ruby 1.8.4, FastCGI. The lighty config is... var.basedir = "/var/www/sites/" $SERVER["socket"] == "101.0.0.171:80" { var.servername = "stage.butlerandtanner.com" server.document-root = basedir + servername + "/public/" # rewrite rules for rails url.rewrite = ( "^/$" => "index.html&...
2020 Nov 01
0
4.13.1 make test failed
...t; ERROR: Testsuite[samba3.blackbox.give_owner(fileserver)] REASON: Exit code was 1 == samba3.raw.acls(nt4_dc_smb1) == command: /usr/src/samba-4.13.1/bin/smbtorture $LOADLIST --configfile=$SMB_CONF_PATH --option='fss:sequence timeout=1' --maximum-runtime=$SELFTEST_MAXTIME --basedir=$SELFTEST_TMPDIR --format=subunit --option=torture:progress=no --option=torture:sharedelay=100000 --option=torture:writetimeupdatedelay=500000 --target=samba3 //$SERVER_IP/tmp -U$USERNAME%$PASSWORD raw.acls 2>&1 | python3 /usr/src/samba-4.13.1/selftest/filter-subunit --fail-on-empty --prefi...
2004 Aug 06
3
icecast2 can not log
...ve downloaded and installed the ports for both without a problem, created directories logs and conf within the icecast root which is /usr/local/share/icecast, and created an icecast user. Then i edited /usr/local/share/icecast/conf/icecast.xml, the relevant entries are: <paths> <!-- basedir is only used if chroot is enabled --> <basedir>/usr/local/share/icecast</basedir> <!-- Note that if <chroot> is turned on below, these paths must both be relative to the new root, not the original root --> <logdir>/usr/local/sha...
2005 Dec 09
1
local source packages install from within R session - cross-platform
...uot;text" "closed" "yes" can write "yes" 3) i tinkered with the installLocalPackages() from sciViews library... "installLocalPackages" <- function(basedir = "d:/R", url = paste("file:", basedir, "/bin/windows/contrib", sep = "")) { # Install one or several packages from a local source if (.Platform$OS.type != "windows") stop("This function is for Windows only! Use install.packages instea...