Displaying 3 results from an estimated 3 matches for "confline".
Did you mean:
confine
2012 Feb 01
2
Bash scripting - Remotely ran commands break while loop
...o password is
needed.
What I noticed is that running remote ssh commands in bash script breaks
while loops.
======
#!/bin/sh
for i in server2 server2; do
echo "--> Start"
ssh peter@$i ls
echo "--> END"
done
echo " server2
server2" | \
while read confLine; do
echo "--> $confLine"
ssh peter@$confLine ls
echo "--> END $confLine"
done
====
The "for" loop in the script above will run twice but the "while" loop
below it will run only once.
This is very simple to test and I've tried it on...
2010 Sep 06
1
MeetMe errorhandling
Hi Group,
i have a MeetMe Question.
I use "MeetMe(,Ms)" in the Dialplan and if a Conference Room does't exist Asterisk play (conf-invalid.slin)
If i use "MeetMe(${room},Ms)" (value from DTMF Read) and the Conference Room doesn't exist Asterisk don't play (conf-invalid.slin) and Asterisk Hangup the Call.
there is a solution for the kind my problem?
Thanx and
2006 Jun 30
2
Help with RHEL4 and AD 2003 Authentication
...n reading up on lots of documents that mention the different ways to
do things as far as joining a linux machine to AD and authentication. I've
tried most of them but its not helping at all. I've included my config files
for smb.conf, krb5.conf, pam.d/system-auth and the applicable
nsswitch.conflines. For security reasons, i've obscured part of the
domain name. Any help
is appreciated.
Here are the questions:
1. Do i need to edit more than one pam.d file? For now, I'm just trying to
be able to SSH in as a domain account and as a local user account.
2. Do all the config files here loo...