Displaying 16 results from an estimated 16 matches for "livevault".
2002 Nov 06
4
[Bug 428] sftp could use a command to transfer symlinks
http://bugzilla.mindrot.org/show_bug.cgi?id=428
------- Additional Comments From gfernandez at livevault.com 2002-11-07 01:35 -------
Created an attachment (id=168)
--> (http://bugzilla.mindrot.org/attachment.cgi?id=168&action=view)
changes to implement getlink
this patch includes changes to sftp-int.c
------- You are receiving this mail because: -------
You are the assignee for the bug,...
2003 Jan 14
3
Live DB backups with rsync?
Is it possible to do live backups of a running DB with rsync???
I was just talking to livevault.com & they (only on win boxes) say they
can grab changes from a client's live DB & sync them remotely.
It sounded like BS to me, but I'm neither a DB guy or sync'ing expert.
Steve Mallett
2002 Nov 06
1
[Bug 426] sftp adds write permission when doing get -p
http://bugzilla.mindrot.org/show_bug.cgi?id=426
------- Additional Comments From gfernandez at livevault.com 2002-11-07 00:56 -------
Created an attachment (id=165)
--> (http://bugzilla.mindrot.org/attachment.cgi?id=165&action=view)
Change for sftp to preserve permissions
This is a possible solution to the problem
------- You are receiving this mail because: -------
You are the assignee f...
2002 Nov 06
1
[Bug 427] sftp does not preserve uid/gid on fetch
http://bugzilla.mindrot.org/show_bug.cgi?id=427
------- Additional Comments From gfernandez at livevault.com 2002-11-07 01:12 -------
Created an attachment (id=167)
--> (http://bugzilla.mindrot.org/attachment.cgi?id=167&action=view)
changes to preserve uid/gid on fetch
this is a possible change to preserve uid/gid on fetch
------- You are receiving this mail because: -------
You are the a...
2002 Nov 07
2
[Bug 431] scp could prevent write access to server
http://bugzilla.mindrot.org/show_bug.cgi?id=431
------- Additional Comments From gfernandez at livevault.com 2002-11-08 00:36 -------
Created an attachment (id=174)
--> (http://bugzilla.mindrot.org/attachment.cgi?id=174&action=view)
adds readonly flag to scp
this change applies to scp.c
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching...
2002 Nov 06
0
[Bug 426] New: sftp adds write permission when doing get -p
...-p
Product: Portable OpenSSH
Version: 3.4p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P3
Component: sftp
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: gfernandez at livevault.com
sftp adds write permission when transferring a file. This is presumably so that
it can have access to the file while writing it. However, when it later sets
the permissions, it uses the permissions which included the added write access.
As a result the access does not match the original mo...
2002 Nov 06
0
[Bug 427] New: sftp does not preserve uid/gid on fetch
...tch
Product: Portable OpenSSH
Version: 3.4p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P3
Component: sftp
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: gfernandez at livevault.com
currently sftp does not attempt to preserve uid/gid on fetch.
If sftp is running as root, it could preserve uid/gid.
Note: a possible objection to implementing this was raised. Namely, whether
uid/gid will make sense when sftp is being used in a cross platform case.
------- You are rece...
2002 Nov 06
0
[Bug 428] New: sftp could use a command to transfer symlinks
...Product: Portable OpenSSH
Version: 3.4p1
Platform: All
OS/Version: All
Status: NEW
Severity: enhancement
Priority: P3
Component: sftp
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: gfernandez at livevault.com
Currently there is no way using sftp to transfer a symlink.
The attached patch adds a command "getlink" that allows a symlink to be
transferred.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2002 Nov 07
0
[Bug 430] New: Could add option to sftp-server to disable write access
...Product: Portable OpenSSH
Version: 3.4p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P3
Component: sftp-server
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: gfernandez at livevault.com
This considers adding a flag to the sftp-server which would disable all write
operations on the server, effectively making the server readonly.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2002 Nov 07
0
[Bug 430] Could add option to sftp-server to disable write access
http://bugzilla.mindrot.org/show_bug.cgi?id=430
------- Additional Comments From gfernandez at livevault.com 2002-11-08 00:32 -------
Created an attachment (id=173)
--> (http://bugzilla.mindrot.org/attachment.cgi?id=173&action=view)
adds readonly flag to sftp-server
this applies to sftp-server.c
------- You are receiving this mail because: -------
You are the assignee for the bug, or are...
2002 Nov 07
0
[Bug 431] New: scp could prevent write access to server
...rver
Product: Portable OpenSSH
Version: 3.4p1
Platform: All
OS/Version: All
Status: NEW
Severity: normal
Priority: P3
Component: scp
AssignedTo: openssh-unix-dev at mindrot.org
ReportedBy: gfernandez at livevault.com
This provides a compile time mode where scp would refuse write operations. As
a result, scp would treat the server as readonly.
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
2002 Nov 05
2
[PATCH] Add a chroot_users option to sshd
This patch adds a new option to sshd, chroot_users. It has the effect of
chroot()ing incoming ssh users to their home directory. Note: this option
does not work if UsePrivilegeSeparation is enabled.
Patch is based on OpenSSH 3.4p1.
*** servconf.h@@\main\1 Tue Oct 1 17:25:32 2002
--- servconf.h Wed Oct 2 06:17:48 2002
***************
*** 131,136 ****
--- 131,137 ----
char
2002 Nov 05
0
[PATCH] Add readonly mode to scp, sftp_server
This patch adds a readonly mode to scp and sftp_server. This allows clients
to only read files from the server, but not to write them.
Patch is based on OpenSSH 3.4p1
*** scp.c@@\main\1 Tue Oct 1 17:25:16 2002
--- scp.c Wed Oct 2 06:05:14 2002
***************
*** 122,127 ****
--- 122,130 ----
/* This is set to zero if the progressmeter is not desired. */
int showprogress = 1;
+ /* deny
2002 Nov 05
0
[PATCH] Add getlink command to sftp
One of the features missing in sftp is the ability to transfer a symlink.
This patch adds a new command to sftp which performs this transfer. Note
that it uses messages that already exist in the protocol between client and
server.
This diff is based on OpenSSH 3.4p1.
*** sftp-client.c@@\main\1 Tue Oct 1 17:26:20 2002
--- sftp-client.c Wed Oct 23 15:57:34 2002
***************
*** 666,672 ****
2002 Nov 05
2
[PATCH] fix sftp to preserve permissions and uid/gid
Sftp fails to correctly preserve permissions when fetching a file. It adds
write permission for the owner (presumably so it can write the file).
Sftp also fails to preserve the uid/gid. Added code so that if is running
as root, uid and gid are preserved.
patch is based on Openssh 3.4p1.
*** sftp-client.c@@\main\1 Tue Oct 1 17:26:20 2002
--- sftp-client.c Tue Nov 5 10:22:52 2002
2002 Sep 10
0
[PATCH] Add --preserve-atime switch to rsync
In the past there have been discussions about adding a switch to rsync to
preserve the atime on files being copied by rsync. I needed this function
for a project I'm working on and decided to invent it. I've attached the
diffs. Note that this has the limitations describe in previous emails,
namely that preserving atime causes ctime to not be preserved.
*** Patch follows ***
***