1 | #!/bin/bash |
---|
2 | # |
---|
3 | # 2019/11/25 Gabriel Moreau <Gabriel.Moreau@univ-grenoble-alpes.fr> |
---|
4 | |
---|
5 | trap '[ -n "${tmp_folder}" -a -d "${tmp_folder}" ] && rm -rf "${tmp_folder}"' QUIT |
---|
6 | |
---|
7 | export PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin |
---|
8 | export LANG=C |
---|
9 | |
---|
10 | tmp_folder=$(mktemp --directory /tmp/tssh-XXXXXX) |
---|
11 | [ -n "${tmp_folder}" -a -d "${tmp_folder}" ] || exit 1 |
---|
12 | |
---|
13 | # Set Name and Version |
---|
14 | PKG_NAME=tssh |
---|
15 | CODE_VERSION=$(grep '^VERSION=' tssh | cut -f 2 -d "'") # ' |
---|
16 | PKG_VERSION=1 |
---|
17 | |
---|
18 | # Create future tree |
---|
19 | mkdir -p ${tmp_folder}/usr/bin |
---|
20 | mkdir -p ${tmp_folder}/usr/share/man/man1 |
---|
21 | mkdir -p ${tmp_folder}/usr/share/tssh |
---|
22 | mkdir -p ${tmp_folder}/etc/bash_completion.d |
---|
23 | cp tssh ${tmp_folder}/usr/bin/ |
---|
24 | cp tssh.1.gz ${tmp_folder}/usr/share/man/man1/ |
---|
25 | cp LICENSE.txt ${tmp_folder}/usr/share/tssh/ |
---|
26 | cp config.sample.sh ${tmp_folder}/usr/share/tssh/ |
---|
27 | cp tssh.bash_completion ${tmp_folder}/etc/bash_completion.d/ |
---|
28 | chmod -R a+rx ${tmp_folder}/usr/bin/tssh |
---|
29 | chmod -R a+rX,go-w ${tmp_folder}/usr |
---|
30 | chmod -R a+rX,go-w ${tmp_folder}/etc |
---|
31 | |
---|
32 | # Data archive |
---|
33 | rm -f ${tmp_folder}/data.tar.gz |
---|
34 | (cd ${tmp_folder}; tar --owner root --group root -czf data.tar.gz ./usr ./etc) |
---|
35 | |
---|
36 | # Control file |
---|
37 | cat <<END > ${tmp_folder}/control |
---|
38 | Package: ${PKG_NAME} |
---|
39 | Version: ${CODE_VERSION}-${PKG_VERSION} |
---|
40 | Section: admin |
---|
41 | Tag: admin::cluster, implemented-in::bash, interface::commandline, interface::text-mode, network::client, protocol::ssh, role::program, use::login |
---|
42 | Priority: optional |
---|
43 | Depends: tmux, openssh-client, ncurses-bin, findutils, grep, wamerican | wfrench |
---|
44 | Suggests: nmap, parallel |
---|
45 | Architecture: all |
---|
46 | Installed-Size: $(du -ks ${tmp_folder}|cut -f 1) |
---|
47 | Maintainer: Gabriel Moreau <Gabriel.Moreau@univ-grenoble-alpes.fr> |
---|
48 | Description: administer multiple ssh shells simultaneously with tmux |
---|
49 | tssh is an acronym for tmux ssh. |
---|
50 | In practise, tssh is an ncurve version of cluster-ssh. |
---|
51 | It has been used in the LEGI laboratory for over 5 years. |
---|
52 | tssh is a small tool to launch command over many computers. |
---|
53 | It allows you to control multiple ssh sessions from a single input window. |
---|
54 | You can also configure clusters of machines for easy invocation |
---|
55 | and interact with individual terminal windows during a session. |
---|
56 | . |
---|
57 | The tool is quite effective and tries to keep things simple. |
---|
58 | Homepage: http://servforge.legi.grenoble-inp.fr/projects/soft-trokata/wiki/SoftWare/tssh |
---|
59 | END |
---|
60 | |
---|
61 | # Control archive |
---|
62 | rm -f ${tmp_folder}/control.tar.gz |
---|
63 | (cd ${tmp_folder}; tar --owner root --group root -czf control.tar.gz control) |
---|
64 | |
---|
65 | # Format deb package |
---|
66 | echo 2.0 > ${tmp_folder}/debian-binary |
---|
67 | |
---|
68 | # Create package (control before data) |
---|
69 | ar -r ${PKG_NAME}_${CODE_VERSION}-${PKG_VERSION}_all.deb ${tmp_folder}/debian-binary ${tmp_folder}/control.tar.gz ${tmp_folder}/data.tar.gz |
---|
70 | |
---|
71 | # Clean |
---|
72 | rm -rf ${tmp_folder} |
---|
73 | |
---|
74 | # Prepare reprepro upload |
---|
75 | echo "# Prepare reprepro upload" |
---|
76 | echo "( cd /srv/www/debian/ ; reprepro includedeb wheezy ~/wheezy/${PKG_NAME}_${CODE_VERSION}-${PKG_VERSION}_all.deb )" |
---|
77 | echo "( cd /srv/www/debian/ ; reprepro includedeb jessie ~/jessie/${PKG_NAME}_${CODE_VERSION}-${PKG_VERSION}_all.deb )" |
---|
78 | echo "( cd /srv/www/debian/ ; reprepro includedeb stretch ~/stretch/${PKG_NAME}_${CODE_VERSION}-${PKG_VERSION}_all.deb )" |
---|
79 | echo "( cd /srv/www/debian/ ; reprepro includedeb buster ~/buster/${PKG_NAME}_${CODE_VERSION}-${PKG_VERSION}_all.deb )" |
---|
80 | echo "( cd /srv/www/debian/ ; reprepro dumpreferences ) | grep -i tssh" |
---|