search for: test_script

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

Did you mean: test_scripts
2024 Apr 18
1
Samba-tool gpo manage - The authenticated user does not have sufficient privileges
On 4/18/24 8:07 AM, Rowland Penny via samba wrote: > OK, After reading the commands help, I created a simple script and ran > the command like this: > > adminuser at tmpdc1:~ $ sudo samba-tool gpo manage scripts startup add {31B2F340-016D-11D2-945F-00C04FB984F9} test_script.sh -Uadministrator There is no reason to run this command as root. It operates via SMB, not on local files. > After being prompted for the Administrator password, the command > appeared to complete without error. > > However, I couldn't find the script in sysvol on the DC I ran the...
2024 Apr 18
1
Samba-tool gpo manage - The authenticated user does not have sufficient privileges
...18/24 8:07 AM, Rowland Penny via samba wrote: > > OK, After reading the commands help, I created a simple script and > > ran the command like this: > > > > adminuser at tmpdc1:~ $ sudo samba-tool gpo manage scripts startup add > > {31B2F340-016D-11D2-945F-00C04FB984F9} test_script.sh > > -Uadministrator > There is no reason to run this command as root. It operates via SMB, > not on local files. I used sudo because when I first ran it without sudo, I got this: adminuser at tmpdc1:~ $ samba-tool gpo manage scripts startup add {31B2F340-016D-11D2-945F-00C04FB984F9...
2006 Dec 15
3
can Timeout::timeout(...) be used in a Worker ?
...else has tried to use the Timeout::timeout method in a backgroundrb Worker and had Timeout raise an exception after the allotted amount of time . I ask because i have written a test script to make sure Timeout would work . I have tested the script by directly feeding it to ruby with : $ ruby test_script.rb and piping the script to the rails console: $ script/console < test_script.rb Both of which work as expected . I am using the latest release of backgroundrb: 0.2.1 (Released November 28, 2006 - r162) . If it is not possible to use TImeout::timeout in a Worker currently, is there anoth...
2024 Apr 18
2
Samba-tool gpo manage - The authenticated user does not have sufficient privileges
On 4/18/24 10:22 AM, Rowland Penny via samba wrote: > I used sudo because when I first ran it without sudo, I got this: > > adminuser at tmpdc1:~ $ samba-tool gpo manage scripts startup add {31B2F340-016D-11D2-945F-00C04FB984F9} test_script.sh > ERROR: Error connecting to 'rpidc2.samdom.example.com' using SMB Well that's odd. That shouldn't be necessary. > I then ran it with sudo but without '-Uadministrator and got this: > > adminuser at tmpdc1:~ $ sudo samba-tool gpo manage scripts startup add {31B2F3...
2024 Apr 18
1
Samba-tool gpo manage - The authenticated user does not have sufficient privileges
...samba-vfs-modules:amd64? 2:4.19.6+dfsg-1 amd64 > avail> Samba Virtual > FileS > OK, After reading the commands help, I created a simple script and ran the command like this: adminuser at tmpdc1:~ $ sudo samba-tool gpo manage scripts startup add {31B2F340-016D-11D2-945F-00C04FB984F9} test_script.sh -Uadministrator After being prompted for the Administrator password, the command appeared to complete without error. However, I couldn't find the script in sysvol on the DC I ran the command on, but after checking the other two DCs, I found this: adminuser at rpidc2:~ $ sudo cat /var/lib/...
2008 Mar 04
2
How to build and test wxRuby
Greetings, I''m using wxRuby2 to develop an app, and I''d like to have a build of wxRuby2 to work from so that when I find something that doesn''t work, I can maybe attempt to find out why and, who knows, maybe even submit a patch once in a while. I should start by saying that I''m on Mac OS X 10.5.2. What I''d like to do is to have this build of
2024 Apr 18
1
Samba-tool gpo manage - The authenticated user does not have sufficient privileges
W dniu 18.04.2024 o?12:01, Jaros?aw K?opotek - INTERDUO via samba pisze: > > W dniu 18.04.2024 o?09:56, Rowland Penny via samba pisze: >> On Thu, 18 Apr 2024 09:03:10 +0200 >> Jaros?aw K?opotek - INTERDUO via samba<samba at lists.samba.org>? wrote: >> >>> Hi all, >>> >>> I run cmd: >>> samba-tool gpo manage scripts startup add \
2016 Sep 09
2
[PATCH 1/3] appveyor: include opus.dll and opus.exp files if available
...y: minimal after_build: -- cmd: 7z a opus.zip win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.lib include\*.h +- cmd: 7z a opus.zip win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.lib include\*.h -i!win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.dll -i!win32\VS2015\%PLATFORM%\%CONFIGURATION%\opus.exp test_script: - cmd: >- -- 2.9.1
2014 Oct 05
0
[PATCH v5 1/7] tests: Introduce test harness for running tests.
...pr "\n"; + pr "localtests_DATA ="; + List.iter (fun n -> pr " \\\n\t%s" n) (List.sort compare tests.check_data); + pr "\n"; + ); + + (* Only add *.sh and *.pl to localtests_SCRIPTS. Others are added to + * localtests_PROGRAMS. + *) + let test_scripts, test_programs = + List.partition ( + fun file -> + Filename.check_suffix file ".sh" || Filename.check_suffix file ".pl" + ) (tests.check @ tests.check_fast @ tests.check_slow + @ tests.check_local_guests) in + + (* Also, check_scripts get added to l...
2015 Aug 06
0
[PATCH v4 01/17] tests: Introduce test harness for running tests.
...pr "\n"; + pr "localtests_DATA ="; + List.iter (fun n -> pr " \\\n\t%s" n) (List.sort compare tests.check_data); + pr "\n"; + ); + + (* Only add *.sh and *.pl to localtests_SCRIPTS. Others are added to + * localtests_PROGRAMS. + *) + let test_scripts, test_programs = + List.partition ( + fun file -> + Filename.check_suffix file ".sh" || Filename.check_suffix file ".pl" + ) (tests.check @ tests.check_fast @ tests.check_slow + @ tests.check_local_guests) in + + (* Also, check_scripts get added to l...
2016 Jul 15
3
[PATCH 1/4] Create a simple project to create version.h to run before any other
Avoids trying to create and replace version.h more than once which led to file-locking errors with multicore builds. --- Makefile.am | 1 + win32/VS2015/celt.vcxproj | 48 +++++++++++++++++--------- win32/VS2015/generate_version.vcxproj | 65 +++++++++++++++++++++++++++++++++++ win32/VS2015/opus.sln | 32 ++++++++++++++++-
2011 Jun 06
0
Release of libvirt-0.9.2
...- esx: Improve list usage detection in the generator (Matthias Bolte) - esx: Remove 1000 lines of generated but unused code (Matthias Bolte) - esx: Generate implicit _this macros (Matthias Bolte) - esx: Move the Event type from the VI generator to manually written code (Matthias Bolte) - test: all test_scripts should be part of tarball when building without libvirtd (Wen Congyang) - build: probes.d and libvirtd.stp should be part of tarball (Wen Congyang) - remote: Convert SSH tunnel to virCommand (Cole Robinson) - storage: Convert qemu-img -help parsing to virCommand (Cole Robinson) - apparmor: Convert...
2014 Oct 04
4
[PATCH v4 0/4] tests: Introduce test harness for running tests.
This converts more of the tests (basically everything under tests/) to use the test harness, revealing some problems which have subsequently been fixed. Rich.
2014 Oct 23
10
[PATCH v6 00/10] tests: Introduce test harness for running tests.
For v6: This is mainly just a rebase, but I have also added tests in the ocaml/ language bindings directory, and for all the OCaml-written virt tools. Rich.
2014 Oct 24
10
[PATCH v7 00/10] tests: Introduce test harness for running tests.
v7: The only changes since v6 are those suggested by Pino in the review of v5.
2015 Jul 28
10
[PATCH 00/10] tests: Introduce test harness for running tests.
I should probably start by saying this patch series isn't ready for review yet. This patch series adds a test harness to libguestfs. It allows us to run the tests outside the ordinary 'make check' path in the build tree. In particular, you can use this to run tests when libguestfs has been installed. 'make check' and the other 'make check-*' rules still work. The
2014 Oct 05
12
[PATCH v5 0/7] tests: Introduce test harness for running tests.
Since v4: - More tests have been converted. - Testing local guests fixed. - Drop no-exec-stack test.
2015 Aug 06
20
[PATCH v4 00/17] tests: Introduce test harness for running tests.
Since v3: - A large number of fixes, especially for running the tests on installed libguestfs. - Fixed EXTRA_DIST rules throughout. - Extra patch 17/17 which is a tidy-up of the generated XML listing guests. Rich.
2015 Jul 31
14
[PATCH v2 00/14] tests: Introduce test harness for running tests.
This is a more complete patch to add the test harness. The only parts missing now are the language bindings (except OCaml). The language bindings need a bit more thought. At the moment most language binding tests are done through some sort of shell script like perl/run-perl-tests which either runs each test itself or uses some language-specific machinary to run each test. The problem with that
2015 Aug 04
16
[PATCH v3 01/16] tests: Introduce test harness for running tests.
Since v2: - Add perl tests. - Reworked and fixed the tests for virt-builder. - Some further minor bug fixes.