search for: store_tru

Displaying 20 results from an estimated 20 matches for "store_tru".

Did you mean: store_tr
2022 Nov 04
3
[libnbd PATCH v2 0/3] Improve nbdsh -u handling
v1 was here: https://listman.redhat.com/archives/libguestfs/2022-October/030216.html Since then, I've incorporated changes based on Rich's feedback: swap order of patches 2 and 3 less change in patch 1 (including no unsafe eval(%s) for --uri) in patch 2, include -c in list of snippets to store, and use dict of lambdas to map back to the desired action Eric Blake (3): nbdsh:
2019 Sep 12
1
[libnbd PATCH] nbdsh: Support -u as synonym for --connect
.../uri.md>. diff --git a/python/nbdsh.py b/python/nbdsh.py index 00bc6bc..b15702c 100644 --- a/python/nbdsh.py +++ b/python/nbdsh.py @@ -29,7 +29,7 @@ def shell(): epilog=epilog) parser.add_argument ('-b', '--base-allocation', action='store_true', help='request the "base:allocation" meta context') - parser.add_argument ('--connect', metavar='URI', + parser.add_argument ('-u', '--connect', metavar='URI', help="connec...
2014 Mar 21
0
[PATCH RFC V2 4/4] tools: virtio: add a top-like utility for displaying vhost satistics
...anner_repeat = 20 + while True: + time.sleep(1) + if line % banner_repeat == 0: + banner() + statline() + line += 1 + +options = optparse.OptionParser() +options.add_option('-1', '--once', '--batch', + action = 'store_true', + default = False, + dest = 'once', + help = 'run in batch mode for one second', + ) +options.add_option('-l', '--log', + action = 'store_true', +...
2018 Oct 02
2
Delete vs. Expunge in Public Namespace
All, my IMAP client [1] marks messages as deleted, but doesn't expunge. Dovecot (2.2.27-3+deb9u2) expunges them. Is this because the mailbox is part of public namespace? .... ::1.38247-::1.00143: MALP6 STORE 48,49,50,51,52,53,54,55,56,57,58,59,60,61 +FLAGS (\Deleted) ::1.00143-::1.38247: * 48 FETCH (FLAGS (\Deleted \Seen)) * 49 FETCH (FLAGS (\Deleted \Seen)) * 50 FETCH (FLAGS (\Deleted
2018 Oct 03
1
Delete vs. Expunge in Public Namespace
...ecause they're duplicates? Is there any check? > Based on Message ID? No.. None of this makes sense. Dovecot doesn't auto-expunge \Deleted mails in any situation. I see your tool says: parser.add_option("", "--no-close", dest='no_close', action="store_true", help='Do not "close" mailbox when done. Some servers will purge deleted messages on a close command.') If it's sending CLOSE, that explains it. It's not just "some servers", it's all IMAP servers. There's UNSELECT command...
2017 Jan 30
0
classic upgrade fails with 4.6-test
...ks, > > Andrew Bartlett This is what is in git at the moment: class cmd_domain_classicupgrade(Command): ~~~~~~~~~~~~ ~~~~~~~~~~ ~~~~~~ ntvfs_options = [ Option("--use-ntvfs", help="Use NTVFS for the fileserver (default = no)", action="store_true"), Option("--use-xattrs", type="choice", choices=["yes","no","auto"], metavar="[yes|no|auto]", help="Define if we should use the native fs capabilities or a tdb file for "...
2017 Jan 29
0
classic upgrade fails with 4.6-test
...est' options with configure ? > > > > I used '--without-ntvfs-fileserver'. OK, this is the code that is producing the error: ntvfs_options = [ Option("--use-ntvfs", help="Use NTVFS for the fileserver (default = no)", action="store_true"), Option("--use-xattrs", type="choice", choices=["yes","no","auto"], metavar="[yes|no|auto]", help="Define if we should use the native fs capabilities or a tdb file for "...
2019 Sep 12
2
[libnbd PATCH] nbdsh: Add -b option to simplify h.block_status
...;''Please read the nbdsh(1) manual page for full usage.''' parser = argparse.ArgumentParser (prog='nbdsh', description=description, epilog=epilog) + parser.add_argument ('-b', '--base-allocation', action='store_true', + help='request the "base:allocation" meta context') parser.add_argument ('--connect', metavar='URI', help="connect to NBD URI") parser.add_argument ('-c', '--command', act...
2013 Oct 29
2
creating an ubuntu package of version 4.1.0
...13-10-29 18:13:14.464962744 +0000 +++ samba4/wscript 2013-10-29 18:17:07.732967883 +0000 @@ -66,6 +66,10 @@ gr = opt.option_group('developer options') + opt.add_option('--disable-ntdb', + help=("disable ntdb"), + action="store_true", dest='disable_ntdb', default=True) + opt.tool_options('python') # options for disabling pyc or pyo compilation # enable options related to building python extensions @@ -124,7 +128,10 @@ conf.RECURSE('source4/ntvfs/sysdep') conf.RECURSE('lib...
2017 Jan 29
3
classic upgrade fails with 4.6-test
On Sun, Jan 29, 2017 at 4:54 PM, Rowland Penny <rpenny at samba.org> wrote: > When you built Samba, did you use the '--with-ntvfs-fileserver' or > '--enable-selftest' options with configure ? > I used '--without-ntvfs-fileserver'.
2012 Apr 10
3
[PATCH 0/2] adding tracepoints to vhost
To help in vhost analyzing, the following series adding basic tracepoints to vhost. Operations of both virtqueues and vhost works were traced in current implementation, net code were untouched. A top-like satistics displaying script were introduced to help the troubleshooting. TODO: - net specific tracepoints? --- Jason Wang (2): vhost: basic tracepoints tools: virtio: add a
2012 Apr 10
3
[PATCH 0/2] adding tracepoints to vhost
To help in vhost analyzing, the following series adding basic tracepoints to vhost. Operations of both virtqueues and vhost works were traced in current implementation, net code were untouched. A top-like satistics displaying script were introduced to help the troubleshooting. TODO: - net specific tracepoints? --- Jason Wang (2): vhost: basic tracepoints tools: virtio: add a
2017 Jan 30
2
classic upgrade fails with 4.6-test
On Mon, 2017-01-30 at 08:42 +0000, Rowland Penny wrote: > On Mon, 30 Jan 2017 15:44:15 +1300 > Andrew Bartlett <abartlet at samba.org> wrote: > > > On Sun, 2017-01-29 at 22:43 +0000, Rowland Penny via samba wrote: > > > On Sun, 29 Jan 2017 17:07:39 -0500 > > > Sonic <sonicsmith at gmail.com> wrote: > > > > > > > On Sun, Jan 29,
2019 Sep 12
1
[libnbd PATCH v2] nbdsh: Prefer --uri over --connect
...ob/master/doc/uri.md>. diff --git a/python/nbdsh.py b/python/nbdsh.py index 098cc8a..3b4ad0e 100644 --- a/python/nbdsh.py +++ b/python/nbdsh.py @@ -29,8 +29,10 @@ def shell(): epilog=epilog) parser.add_argument ('--base-allocation', action='store_true', help='request the "base:allocation" meta context') - parser.add_argument ('--connect', metavar='URI', + parser.add_argument ('-u', '--uri', help="connect to NBD URI") + #...
2020 Sep 28
2
[libnbd PATCH] nbdsh: Add --opt-mode command line option
...a1b5f3 100644 --- a/python/nbdsh.py +++ b/python/nbdsh.py @@ -38,6 +38,10 @@ def shell(): help='request the "base:allocation" meta context') long_options.append("--base-allocation") + parser.add_argument('--opt-mode', action='store_true', + help='request opt mode during connection') + long_options.append("--opt-mode") + parser.add_argument('-u', '--uri', help="connect to NBD URI") short_options.append("-u") long_options.append(&quot...
2014 Mar 21
5
[PATCH RFC V2 0/4] Adding tracepoints to vhost/net
Recent debugging on vhost net zerocopy shows the need of tracepoints. So to help in vhost{net} debugging and performance analyzing, the following series adding basic tracepoints to vhost. Operations of both vhost and vhost_net were traced in current implementation. A top-like satistics displaying script were introduced to help the troubleshooting: vhost statistics vhost_virtio_update_used_idx
2014 Mar 21
5
[PATCH RFC V2 0/4] Adding tracepoints to vhost/net
Recent debugging on vhost net zerocopy shows the need of tracepoints. So to help in vhost{net} debugging and performance analyzing, the following series adding basic tracepoints to vhost. Operations of both vhost and vhost_net were traced in current implementation. A top-like satistics displaying script were introduced to help the troubleshooting: vhost statistics vhost_virtio_update_used_idx
2009 Sep 22
1
[PATCH] edit-livecd in python
...quot;--tmpdir", type="string", + dest="tmpdir", default="/var/tmp", + help="Temporary directory to use (default: /var/tmp)") + + parser.add_option("", "--skip-compression", action="store_true", dest="skip_compression") + + parser.add_option("", "--skip-minimize", action="store_true", dest="skip_minimize") + + setup_logging(parser) + + (options, args) = parser.parse_args() + + if len(args) != 1: + parser.p...
2012 Sep 24
4
samba4: samba-tool and (unix) uids
Hello, at my universities CS computer pools we're trying to migrate our samba3 based NT domain to AD with samba4-rc1. In the past we had a little script which our users could run on their own from their linux account which created a samba user with their own uid/gid and set their password (via smbpasswd). We're trying to recreate this behaviour with "samba-tool user create"
2010 May 26
1
Samba4 Patch: newuseradv and newgroupadv scripts for net cmd utlity
Hi all, As per Jelmer's request - in response to bug #7455 attached diff file. Please let me know what you think and if any modificationes need to be performed Regards Luk -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: newusergroupadv.diff URL: