mirror of
				https://github.com/apache/cloudstack.git
				synced 2025-11-04 00:02:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			74 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
# Licensed to the Apache Software Foundation (ASF) under one
 | 
						|
# or more contributor license agreements.  See the NOTICE file
 | 
						|
# distributed with this work for additional information
 | 
						|
# regarding copyright ownership.  The ASF licenses this file
 | 
						|
# to you under the Apache License, Version 2.0 (the
 | 
						|
# "License"); you may not use this file except in compliance
 | 
						|
# with the License.  You may obtain a copy of the License at
 | 
						|
# 
 | 
						|
#   http://www.apache.org/licenses/LICENSE-2.0
 | 
						|
# 
 | 
						|
# Unless required by applicable law or agreed to in writing,
 | 
						|
# software distributed under the License is distributed on an
 | 
						|
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
 | 
						|
# KIND, either express or implied.  See the License for the
 | 
						|
# specific language governing permissions and limitations
 | 
						|
# under the License.
 | 
						|
 | 
						|
 | 
						|
# $Id: save_password_to_domr.sh 9804 2010-06-22 18:36:49Z alex $ $HeadURL: svn://svn.lab.vmops.com/repos/vmdev/java/scripts/network/domr/save_password_to_domr.sh $
 | 
						|
# @VERSION@
 | 
						|
 | 
						|
PASSWD_FILE=/var/cache/cloud/passwords
 | 
						|
 | 
						|
#   $1 filename
 | 
						|
#   $2 keyname
 | 
						|
#   $3 value
 | 
						|
replace_in_file_on_domr() {
 | 
						|
  local filename=$1
 | 
						|
  local keyname=$2
 | 
						|
  local value=$3
 | 
						|
  $VIA_SSH "sed -i /$keyname/d $filename; \
 | 
						|
  		 	echo "$keyname=$value" >> $filename "
 | 
						|
  		 	
 | 
						|
  # $VIA_SSH "sed -e /$keyname/d $filename > $filename.new; \
 | 
						|
  #        mv $filename.new $filename;\
 | 
						|
  #         echo "$keyname=$value" >> $filename "
 | 
						|
  
 | 
						|
  return $?
 | 
						|
}
 | 
						|
 | 
						|
cert="/root/.ssh/id_rsa.cloud"
 | 
						|
 | 
						|
while getopts 'r:v:p:' OPTION
 | 
						|
do
 | 
						|
  case $OPTION in
 | 
						|
  r)	
 | 
						|
		DOMR_IP="$OPTARG"
 | 
						|
		;;
 | 
						|
  v)	VM_IP="$OPTARG"
 | 
						|
		;;
 | 
						|
  p)	
 | 
						|
		ENCODEDPASSWORD="$OPTARG"
 | 
						|
		PASSWORD=$(echo $ENCODEDPASSWORD | tr '[a-m][n-z][A-M][N-Z]' '[n-z][a-m][N-Z][A-M]')
 | 
						|
		;;
 | 
						|
  ?)	echo "Incorrect usage"
 | 
						|
		exit 1
 | 
						|
		;;
 | 
						|
  esac
 | 
						|
done
 | 
						|
 | 
						|
VIA_SSH="ssh -p 3922 -o StrictHostKeyChecking=no -i $cert root@$DOMR_IP"
 | 
						|
 | 
						|
$VIA_SSH "if [ ! -f $PASSWD_FILE ]; then touch $PASSWD_FILE; fi;"
 | 
						|
 | 
						|
replace_in_file_on_domr $PASSWD_FILE $VM_IP $PASSWORD
 | 
						|
 | 
						|
if [ $? -ne 0 ]
 | 
						|
then
 | 
						|
	exit 1
 | 
						|
fi
 | 
						|
 | 
						|
exit 0
 |