Questions tagged [non-interactive]
96 questions
0
votes
1 answer
Getting ERROR: WsTrust server returned error in RSTR: {'reason': 'MSIS7068: Access denied.', 'code': 'a:FailedAuthentication'} while connecting az
I am trying to connect az by calling following command.
az login -u -p
WsTrust server returned error in RSTR: {'reason': 'MSIS7068: Access denied.', 'code': 'a:FailedAuthentication'}
Here we are getting errors as follow.
P:S:…

Joji
- 1
- 1
- 1
0
votes
0 answers
Google API access without user interaction
I have some actions for Chrome OS that I would like to create using a background service. I am able to do one time setup but there will be no possibility for user interaction to authenticate in a browser for the calls during execution.
I've been…

Efie
- 1,430
- 2
- 14
- 34
0
votes
0 answers
Update properties during maven release:prepare
I have a maven project, where the POM file looks like below.
foo
bar
2.3-SNAPSHOT
1.0-SNAPSHOT
…

Harsha Chittepu
- 115
- 1
- 8
0
votes
1 answer
Make leaflet markers non-interactable but searchable
So I'm using Leaflet Search and a bunch of invisible leaflet markers to reference a bunch of street names that way it's easier for a user to find a street location and the nearest markers to those street locations, the issue is is the following; My…

Oliver G.
- 3
- 1
0
votes
2 answers
Execute sudo command non-interactively
I would like to execute the following command without interaction:
sudo grep -e "test" /etc/sudoers
I have tried the following method:
tester@compute:~$ echo 'clouduser' | sudo -S grep -e "test" /etc/sudoers
[sudo] password for tester: test…

Albert
- 191
- 1
- 3
- 23
0
votes
2 answers
How to differentiate between interactive and non-interactive logins from "echo $-" output in AIX?
I am doing this on AIX (kshell)
When I echo $- locally i get the output of ism, and when I run it remote ssh test_id@sandbox "echo $-"
$ echo $-
ism
I am running this from a remote servers to another AIX server
ssh test_id@sandbox "echo…

Anand
- 1
- 2
0
votes
1 answer
Running a windows reg add command in non-interactive mode
I'm trying to write a small batch script that is supposed to change some registry entries.
Now to do that from the command line one would use the reg add command. And when the specified registry key already exists it asks to overwrite the value.…

Owl Surojit
- 173
- 1
- 10
0
votes
1 answer
Preventing interactive prompts for parameter values in scripts
I have a script, pingtest.ps1, which makes the following call:
Start-abc -SourceIpaddress x.y.x.z -Protocol TCP -DestinationIpAddress a.c.d.e
During execution it prompts for the source port and destination port.
How do I avoid these interactive…

kranthi
- 77
- 1
- 6
0
votes
0 answers
sshpass for su / using su non-interactive way
I have Jenkins running on a functional account.
Sometimes I need to run 'echo blabla' on several boxes which are accessible from a proxy server only. In that case Jenkins runs:
~/bin/sshpass -p'$userJumpServerPassword' ssh ${username}@$jumpServer …

aerion
- 702
- 1
- 11
- 28
0
votes
1 answer
AnyLogic non-interactive mode
I have some questions similar to Managing multiple anylogic simulations within an experiment, however in more detail:
We'd like to use AnyLogic simulation (especially Discrete Event Simulation) with a multi-node MonteCarlo approach, using variable…

Luma
- 47
- 9
0
votes
1 answer
Automate Response at Prompt in R interactive
Please see below my reference to a previous question asked along these lines.
I am running the library taxize in R. Taxize includes a function for getting a stable number associated with a scientific name, get_tsn().
I can run this in interactive…

17th Lvl Botanist
- 155
- 1
- 3
- 12
0
votes
0 answers
Create German Text Entry Settings in Ubuntu 16.04 non-interactive
I'm creating a Vagrant Box with Ubuntu Desktop 16.04. The Box requires to have a German Keyboard Layout. How do I create this "German Text Entry Settings" during the provisioning phase in non-interactive mode and set it as standard? (I'm talking…

geri-m
- 665
- 2
- 11
- 23
0
votes
0 answers
csh alias is not avaliable in non-interactive shell
I work in a linux environment where the user's shell is configured as csh by default. I'm writing a git post-receive hook that should trigger as the user in a non-interactive csh shell.
My git hook features the following line. This way I can check…

Raven
- 1,453
- 3
- 18
- 29
0
votes
2 answers
Disable .zshenv output for non-interactive shell
My .zshenv produces some output that is only helpful when my shell is interactive.
In other cases when the shell is not interactive this output (i.e. when I run script) must be hidden.
How can I suppress .zshenv output for non-interactive…

mixel
- 25,177
- 13
- 126
- 165
0
votes
1 answer
Alternative to export variable in non interactive shell
I have a requirement wherein a script needs to be executed which requires a few environment variables to be set. Typically the following is required:
1) I login to target node, say T1 using 'user1' and set my environment variable, say TEMPDIR=~/tmp;…

Nanda Kishore Reddy
- 53
- 3