don't command from within the new user's directory
All checks were successful
gitea.arg.rip/deployment/pipeline/head This commit looks good
All checks were successful
gitea.arg.rip/deployment/pipeline/head This commit looks good
This commit is contained in:
parent
616f560e7b
commit
69a74f1855
@ -215,7 +215,9 @@ pipeline {
|
|||||||
script {
|
script {
|
||||||
withCredentials([sshUserPrivateKey(credentialsId: env.SUDOERSSHID, keyFileVariable: 'PK')])
|
withCredentials([sshUserPrivateKey(credentialsId: env.SUDOERSSHID, keyFileVariable: 'PK')])
|
||||||
{
|
{
|
||||||
sh 'scp ${servicename}-ssh.pub -i \"${PK}\" ${SUDOER_USR}@${targetHost}:~/ssh.pub'
|
sh """#!/bin/bash
|
||||||
|
scp -i \"${PK}\" ${servicename}-ssh.pub ${SUDOER_USR}@${targetHost}:~/ssh.pub
|
||||||
|
"""
|
||||||
|
|
||||||
sh """#!/bin/bash
|
sh """#!/bin/bash
|
||||||
ssh-keyscan -t ed25519 ${targetHost} >> ~/.ssh/known_hosts
|
ssh-keyscan -t ed25519 ${targetHost} >> ~/.ssh/known_hosts
|
||||||
|
@ -5,18 +5,14 @@ SUDOER_PSW=
|
|||||||
function restofscript(){
|
function restofscript(){
|
||||||
USERNAMETOADD=
|
USERNAMETOADD=
|
||||||
PASSWORDTOADD=
|
PASSWORDTOADD=
|
||||||
PUBKEYCONTENT=
|
|
||||||
useradd -m -s /bin/bash ${USERNAMETOADD}
|
useradd -m -s /bin/bash ${USERNAMETOADD}
|
||||||
echo "${USERNAMETOADD}:${PASSWORDTOADD}" | chpasswd
|
echo "${USERNAMETOADD}:${PASSWORDTOADD}" | chpasswd
|
||||||
loginctl enable-linger ${USERNAMETOADD}
|
loginctl enable-linger ${USERNAMETOADD}
|
||||||
cd /home/${USERNAMETOADD}
|
mkdir /home/${USERNAMETOADD}/.ssh
|
||||||
mkdir .ssh
|
touch /home/${USERNAMETOADD}/authorized_keys
|
||||||
pushd .ssh
|
cat ssh.pub >> /home/${USERNAMETOADD}/.ssh/authorized_keys
|
||||||
touch authorized_keys
|
chmod 600 /home/${USERNAMETOADD}/authorized_keys
|
||||||
popd
|
chown -R "${USERNAMETOADD}:${USERNAMETOADD}" /home/${USERNAMETOADD}/.ssh
|
||||||
cat ssh.pub >> .ssh/authorized_keys
|
|
||||||
chmod 600 authorized_keys
|
|
||||||
chown -R "${USERNAMETOADD}:${USERNAMETOADD}" .ssh
|
|
||||||
}
|
}
|
||||||
|
|
||||||
echo "${SUDOER_PSW}" | sudo -S bash -c "$(declare -f restofscript); restofscript"
|
echo "${SUDOER_PSW}" | sudo -S bash -c "$(declare -f restofscript); restofscript"
|
||||||
|
Loading…
Reference in New Issue
Block a user