mirror of
https://git.savannah.gnu.org/git/parallel.git
synced 2024-11-22 05:57:54 +00:00
testsuite/REQUIREMENTS: Updated for Ubuntu 18.04.
This commit is contained in:
parent
c0e63fb81c
commit
c7851f76e2
|
@ -1,14 +1,13 @@
|
|||
#!/bin/bash
|
||||
|
||||
mysqlrootpass=${mysqlrootpass:-b+Ydjq4ejT4E}
|
||||
|
||||
install_packages() {
|
||||
# After first run, set this:
|
||||
# export INSTALL=echo
|
||||
INSTALL=${INSTALL:-"sudo aptitude -y install"}
|
||||
|
||||
# The testsuite depends on this:
|
||||
test_pkgs="imagemagick expect autossh sshpass jq libpod-simple-perl pod2pdf gawk"
|
||||
test_pkgs="$test_pkgs lua5.2 clisp php7.0-cli nodejs-legacy mono-csharp-shell"
|
||||
test_pkgs="$test_pkgs lua5.3 clisp php-cli nodejs mono-csharp-shell"
|
||||
|
||||
# DEBIAN package
|
||||
packaging_pkgs="dpkg-dev build-essential debhelper osc cvs"
|
||||
|
@ -22,57 +21,101 @@ compression_pkgs="zstd clzip liblz4-tool lzop pigz pixz pxz gzip plzip pbzip2 lz
|
|||
shell_pkgs="ash csh dash fdclone fish fizsh ksh mksh posh rc rush sash tcsh yash zsh"
|
||||
# Databases
|
||||
database_pkgs="postgresql mysql-server sqlite"
|
||||
$INSTALL $test_pkgs $packaging_pkgs $shebang_pkgs $sql_pkgs $compression_pkgs $shell_pkgs $database_pkgs
|
||||
if $INSTALL $test_pkgs $packaging_pkgs $shebang_pkgs $sql_pkgs $compression_pkgs $shell_pkgs $database_pkgs; then
|
||||
# OK
|
||||
true
|
||||
else
|
||||
echo Packages missing
|
||||
exit 1
|
||||
fi
|
||||
}
|
||||
|
||||
setup_databases() {
|
||||
# DATABASES
|
||||
echo '# Create PostgreSQL'
|
||||
sudo su - postgres -c 'createdb '`whoami`
|
||||
sudo su - postgres -c 'createuser '`whoami`
|
||||
sudo su - postgres -c "sql pg:/// \"ALTER USER \\\"`whoami`\\\" WITH PASSWORD '`whoami`';\""
|
||||
|
||||
mysqlrootpass=${mysqlrootpass:-b+Ydjq4ejT4E}
|
||||
|
||||
echo '# Create MySQL'
|
||||
sudo su - mysql mysqladmin create `whoami`
|
||||
sql mysql://root:"$mysqlrootpass"@/mysql "DROP DATABASE `whoami`;DROP USER '`whoami`'@'localhost';"
|
||||
sql mysql://root:"$mysqlrootpass"@/mysql "CREATE DATABASE `whoami`;CREATE USER '`whoami`'@'localhost' IDENTIFIED BY '`whoami`'; GRANT ALL ON `whoami`.* TO '`whoami`'@'localhost';"
|
||||
sudo sql mysql://root:"$mysqlrootpass"@/mysql "DROP DATABASE `whoami`;DROP USER '`whoami`'@'localhost';"
|
||||
sudo sql mysql://root:"$mysqlrootpass"@/mysql "CREATE DATABASE `whoami`;CREATE USER '`whoami`'@'localhost' IDENTIFIED BY '`whoami`'; GRANT ALL ON `whoami`.* TO '`whoami`'@'localhost';"
|
||||
}
|
||||
|
||||
add_server_to_hosts() {
|
||||
# Insert 127.1.2.3 server in /etc/hosts
|
||||
if grep -q 127.1.2.3 /etc/hosts; then
|
||||
# skip
|
||||
true
|
||||
else
|
||||
printf "127.1.2.3\tserver\n" |
|
||||
sudo tee -a /etc/hosts
|
||||
fi
|
||||
}
|
||||
|
||||
create_shell_logins() {
|
||||
# SHELLS
|
||||
echo '# Create shell logins'
|
||||
touch ~/.zshrc
|
||||
SSHPASS=`goodpasswd`
|
||||
export SSHPASS
|
||||
#shells="bash sh csh ash tcsh zsh ksh fish fizsh mksh pdksh posh rc sash yash nopathbash nopathcsh"
|
||||
shells="bash sh csh ash dash tcsh zsh ksh fish fizsh mksh posh rc sash yash nopathbash nopathcsh"
|
||||
create_shell_user() {
|
||||
del_add_user() {
|
||||
shell="$1"
|
||||
append-if-not-exists() {
|
||||
file="$1"
|
||||
shift
|
||||
string="$@"
|
||||
if grep -qF "$string" "$file"; then
|
||||
# It is there already
|
||||
echo "$string is already in $file"
|
||||
else
|
||||
echo "$string" | sudo tee -a "$file"
|
||||
fi
|
||||
}
|
||||
append-if-not-exists /etc/shells $(which $shell || which ${shell#"nopath"})
|
||||
sudo deluser $shell && sudo mv /home/$shell /tmp/$shell.$RANDOM
|
||||
sudo groupdel $shell
|
||||
sudo adduser --disabled-password --gecos "$shell for parallel,,," $shell &&
|
||||
echo "$shell:$SSHPASS" | sudo chpasswd &&
|
||||
sshpass -e ssh-copy-id $shell@lo &&
|
||||
if echo $shell | grep -q parallel; then
|
||||
loginshell=/bin/bash
|
||||
else
|
||||
loginshell=$(which $shell || which ${shell#"nopath"})
|
||||
fi
|
||||
sudo adduser --shell $loginshell --disabled-password --gecos "$shell for parallel,,," $shell &&
|
||||
echo "$shell:$SSHPASS" | sudo chpasswd
|
||||
}
|
||||
export -f del_add_user
|
||||
|
||||
make_sshkey() {
|
||||
shell="$1"
|
||||
sshpass -e ssh-copy-id $shell@lo
|
||||
echo Add server keys for lo and server &&
|
||||
ssh $shell@lo 'ssh-keyscan -t rsa lo >> .ssh/known_hosts' &&
|
||||
ssh $shell@lo 'ssh-keyscan -t rsa server >> .ssh/known_hosts' &&
|
||||
echo Do chsh -s $(which $shell || which ${shell#"nopath"}) $shell &&
|
||||
(echo $shell | grep parallel ||
|
||||
sudo chsh -s $(which $shell || which ${shell#"nopath"}) $shell) &&
|
||||
ssh $shell@lo 'rm -f .ssh/id_rsa; ssh-keyscan lo >>.ssh/known_hosts; ssh-keyscan server >> .ssh/known_hosts' &&
|
||||
echo Do ssh-keygen &&
|
||||
echo | ssh -t $shell@lo ssh-keygen -b 1024 &&
|
||||
echo | ssh -t $shell@lo ssh-keygen -b 1024 -f .ssh/id_rsa &&
|
||||
echo Do ssh $shell@lo 'cat .ssh/id_rsa.pub >> .ssh/authorized_keys' &&
|
||||
ssh $shell@lo 'cat .ssh/id_rsa.pub >> .ssh/authorized_keys' &&
|
||||
ssh $shell@lo cat .ssh/id_rsa.pub | ssh parallel@lo 'cat >> .ssh/authorized_keys' &&
|
||||
ssh $shell@lo 'echo ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxg+dh+BL1myqo6A+pHcQCKVV5v7cewdkN8xGtMDqm7xGgh+e5A44W7qKViIx641d6yoWb012XzDz2MKetG4Kosoma8Z/qkS27p6901RmI3ap2JFffzBESlpQtW1FyxQPlMyBfrd4ONy8xW6R/gEkjC3yOcXCQO2494/c46ouXs5gtE84Cusr3RsopR4bI7oloH1GQZ4vsHSFSakq8IwcujaSh1mmribMONLb2TjDpmE7tAY+yfOVWHPQ2J+EU1//Go60EZfSRKOu81oxW7SJ2uGgWfWcs2T1lRtT8Yh+TwVTz8UFV75kVtpZ10x5baN+ncsSpaBK+8sFLfoMvA9yQQ== tange@freebsd71.tange.dk >> .ssh/authorized_keys' &&
|
||||
ssh $shell@lo 'cat .ssh/id_rsa.pub | tee -a .ssh/authorized_keys' |
|
||||
ssh parallel@lo 'cat >> .ssh/authorized_keys' &&
|
||||
ssh $shell@lo "echo ssh-rsa AAAAB3NzaC1yc2EAAAABIwAAAQEAxg+dh+BL1myqo6A+pHcQCKVV5v7cewdkN8xGtMDqm7xGgh+e5A44W7qKViIx641d6yoWb012XzDz2MKetG4Kosoma8Z/qkS27p6901RmI3ap2JFffzBESlpQtW1FyxQPlMyBfrd4ONy8xW6R/gEkjC3yOcXCQO2494/c46ouXs5gtE84Cusr3RsopR4bI7oloH1GQZ4vsHSFSakq8IwcujaSh1mmribMONLb2TjDpmE7tAY+yfOVWHPQ2J+EU1//Go60EZfSRKOu81oxW7SJ2uGgWfWcs2T1lRtT8Yh+TwVTz8UFV75kVtpZ10x5baN+ncsSpaBK+8sFLfoMvA9yQQ'==' tange@freebsd71.tange.dk >> .ssh/authorized_keys" &&
|
||||
echo Do env_parallel --install &&
|
||||
ssh $shell@lo env_parallel --install &&
|
||||
ssh $shell@lo 'mkdir .parallel; touch .parallel/will-cite' &&
|
||||
ssh $shell@lo 'mkdir -p .parallel; touch .parallel/will-cite; env_parallel --install' &&
|
||||
echo OK Created $shell &&
|
||||
echo >&2 &&
|
||||
echo OK Created $shell >&2 &&
|
||||
echo
|
||||
}
|
||||
export -f create_shell_user
|
||||
export -f make_sshkey
|
||||
. `which env_parallel.bash`
|
||||
shellsplus="parallel $shells"
|
||||
|
||||
echo '# (Re-)create user'
|
||||
# Racecondition: if multiple adds a group it will the same group ID
|
||||
parallel --timeout 15 --retries 5 --tag -j1 create_shell_user ::: $shellsplus
|
||||
parallel --timeout 15 --retries 5 --tag -j1 del_add_user ::: $shellsplus
|
||||
echo '# Make and copy sshkey'
|
||||
parallel --timeout 15 --retries 5 --tag -j5 make_sshkey ::: $shellsplus
|
||||
|
||||
ssh_a_to_b() {
|
||||
ssh $1@lo ssh $2@lo echo OK ||
|
||||
|
@ -88,12 +131,12 @@ ssh_copy_id() {
|
|||
}
|
||||
export -f ssh_copy_id
|
||||
|
||||
# copy id from any X to any Y
|
||||
echo '# copy id from any X to any Y'
|
||||
parallel -u --bar -j3 --timeout 3 --retries 10 --tag ssh_copy_id {1}@lo {2}@lo ::: $shellsplus ::: $shellsplus
|
||||
# Test the copying went well
|
||||
echo '# Test the copying went well'
|
||||
parallel -j3 --timeout 3 --retries 10 --tag ssh_a_to_b ::: $shellsplus ::: $shellsplus
|
||||
|
||||
# change paths to no path
|
||||
echo '# change paths to no path'
|
||||
(
|
||||
ssh nopathbash@lo 'echo > .bashrc PATH=/bin:/usr/bin'
|
||||
ssh nopathbash@lo 'echo > .profile PATH=/bin:/usr/bin'
|
||||
|
@ -104,25 +147,26 @@ parallel -j3 --timeout 3 --retries 10 --tag ssh_a_to_b ::: $shellsplus :::
|
|||
ssh nopathcsh@lo 'echo $PATH; echo 1 | parallel echo' || echo Should FAIL
|
||||
|
||||
)
|
||||
}
|
||||
|
||||
lsh_setup() {
|
||||
ssh-keyscan localhost >>~/.ssh/known_hosts
|
||||
ssh-copy-id localhost
|
||||
|
||||
# SHELLS: lsh-client against openssh server
|
||||
$INSTALL lsh-client
|
||||
cd
|
||||
mkdir .lsh
|
||||
mkdir -p .lsh
|
||||
lsh-make-seed -o ".lsh/yarrow-seed-file"
|
||||
lsh -c aes256-ctr --sloppy-host-authentication --capture-to ~/.lsh/host-acls lo echo Added host-auth
|
||||
lsh -c aes256-ctr --sloppy-host-authentication --capture-to ~/.lsh/host-acls localhost echo Added host-auth
|
||||
lsh-keygen | lsh-writekey -c none
|
||||
lsh-export-key --openssh < ~/.lsh/identity.pub | lsh -c aes256-ctr lo 'cat >>.ssh/authorized_keys'
|
||||
lsh-export-key --openssh < ~/.lsh/identity.pub | ssh csh@lo 'cat >>.ssh/authorized_keys'
|
||||
}
|
||||
|
||||
|
||||
parallel --record-env
|
||||
|
||||
sudo cp /usr/bin/tmux /usr/local/bin/tmux1.8
|
||||
|
||||
add_freebsd() {
|
||||
echo "# Add public key to freebsd7.t"
|
||||
ssh freebsd7.t cat .ssh/id_rsa.pub | ssh parallel@localhost 'cat >>.ssh/authorized_keys'
|
||||
|
||||
echo Add:
|
||||
|
@ -138,4 +182,18 @@ echo If you get:
|
|||
echo Unable to negotiate with server port 22: no matching cipher found. Their offer: aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour,aes192-cbc,aes256-cbc,rijndael-cbc@lysator.liu.se
|
||||
echo add this to .ssh/config
|
||||
echo Ciphers +aes256-cbc
|
||||
}
|
||||
|
||||
misc() {
|
||||
parallel --record-env
|
||||
|
||||
sudo cp /usr/bin/tmux /usr/local/bin/tmux1.8
|
||||
}
|
||||
|
||||
install_packages &&
|
||||
setup_databases &&
|
||||
add_server_to_hosts &&
|
||||
create_shell_logins &&
|
||||
lsh_setup &&
|
||||
add_freebsd &&
|
||||
misc
|
||||
|
|
Loading…
Reference in a new issue