Commit initial
This commit is contained in:
parent
33d072a982
commit
b1579a5860
|
@ -1,30 +0,0 @@
|
||||||
cd
|
|
||||||
nano bot_main.py
|
|
||||||
chmod +x bot_main.py
|
|
||||||
./bot_main.py
|
|
||||||
python3 bot_main.py
|
|
||||||
nano bot_main.py
|
|
||||||
python3 bot_main.py
|
|
||||||
python3 bot_main.py --jid isengard@a-lec.org --nick Isengard --password 7M457M8RApgQdeR59HK --room cominfra@salons.a-lec.org
|
|
||||||
nano bot_main.py
|
|
||||||
python3 bot_main.py --jid isengard@a-lec.org --nick Isengard --password 7M457M8RApgQdeR59HK --room cominfra@salons.a-lec.org
|
|
||||||
nano bot_main.py
|
|
||||||
python3 bot_main.py --jid isengard@a-lec.org --nick Isengard --password 7M457M8RApgQdeR59HK --room cominfra@salons.a-lec.org
|
|
||||||
nano bot_main.py
|
|
||||||
python3 bot_main.py --jid isengard@a-lec.org --nick Isengard --password 7M457M8RApgQdeR59HK --room cominfra@salons.a-lec.org
|
|
||||||
nano bot_main.py
|
|
||||||
python3 bot_main.py --jid isengard@a-lec.org --nick Isengard --password 7M457M8RApgQdeR59HK --room cominfra@salons.a-lec.org
|
|
||||||
nano bot_main.py
|
|
||||||
python3 bot_main.py --jid isengard@a-lec.org --nick Isengard --password 7M457M8RApgQdeR59HK --room cominfra@salons.a-lec.org
|
|
||||||
nano bot_main.py
|
|
||||||
nano bot_service.conf
|
|
||||||
sudo cp bot_service.conf /usr/lib/systemd/system/xmpp_bot.service
|
|
||||||
cd
|
|
||||||
nano bot_service.conf
|
|
||||||
mv bot_service.conf xmpp_bot.service
|
|
||||||
cd
|
|
||||||
./bot_main.py
|
|
||||||
nano bot_main.py
|
|
||||||
cd
|
|
||||||
ll
|
|
||||||
nano bot_main.py
|
|
|
@ -1,7 +0,0 @@
|
||||||
# ~/.bash_logout: executed by bash(1) when login shell exits.
|
|
||||||
|
|
||||||
# when leaving the console clear the screen to increase privacy
|
|
||||||
|
|
||||||
if [ "$SHLVL" = 1 ]; then
|
|
||||||
[ -x /usr/bin/clear_console ] && /usr/bin/clear_console -q
|
|
||||||
fi
|
|
113
.bashrc
113
.bashrc
|
@ -1,113 +0,0 @@
|
||||||
# ~/.bashrc: executed by bash(1) for non-login shells.
|
|
||||||
# see /usr/share/doc/bash/examples/startup-files (in the package bash-doc)
|
|
||||||
# for examples
|
|
||||||
|
|
||||||
# If not running interactively, don't do anything
|
|
||||||
case $- in
|
|
||||||
*i*) ;;
|
|
||||||
*) return;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# don't put duplicate lines or lines starting with space in the history.
|
|
||||||
# See bash(1) for more options
|
|
||||||
HISTCONTROL=ignoreboth
|
|
||||||
|
|
||||||
# append to the history file, don't overwrite it
|
|
||||||
shopt -s histappend
|
|
||||||
|
|
||||||
# for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
|
|
||||||
HISTSIZE=1000
|
|
||||||
HISTFILESIZE=2000
|
|
||||||
|
|
||||||
# check the window size after each command and, if necessary,
|
|
||||||
# update the values of LINES and COLUMNS.
|
|
||||||
shopt -s checkwinsize
|
|
||||||
|
|
||||||
# If set, the pattern "**" used in a pathname expansion context will
|
|
||||||
# match all files and zero or more directories and subdirectories.
|
|
||||||
#shopt -s globstar
|
|
||||||
|
|
||||||
# make less more friendly for non-text input files, see lesspipe(1)
|
|
||||||
#[ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
|
|
||||||
|
|
||||||
# set variable identifying the chroot you work in (used in the prompt below)
|
|
||||||
if [ -z "${debian_chroot:-}" ] && [ -r /etc/debian_chroot ]; then
|
|
||||||
debian_chroot=$(cat /etc/debian_chroot)
|
|
||||||
fi
|
|
||||||
|
|
||||||
# set a fancy prompt (non-color, unless we know we "want" color)
|
|
||||||
case "$TERM" in
|
|
||||||
xterm-color|*-256color) color_prompt=yes;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# uncomment for a colored prompt, if the terminal has the capability; turned
|
|
||||||
# off by default to not distract the user: the focus in a terminal window
|
|
||||||
# should be on the output of commands, not on the prompt
|
|
||||||
#force_color_prompt=yes
|
|
||||||
|
|
||||||
if [ -n "$force_color_prompt" ]; then
|
|
||||||
if [ -x /usr/bin/tput ] && tput setaf 1 >&/dev/null; then
|
|
||||||
# We have color support; assume it's compliant with Ecma-48
|
|
||||||
# (ISO/IEC-6429). (Lack of such support is extremely rare, and such
|
|
||||||
# a case would tend to support setf rather than setaf.)
|
|
||||||
color_prompt=yes
|
|
||||||
else
|
|
||||||
color_prompt=
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [ "$color_prompt" = yes ]; then
|
|
||||||
PS1='${debian_chroot:+($debian_chroot)}\[\033[01;32m\]\u@\H\[\033[00m\]:\[\033[01;34m\]\w\[\033[00m\]\$ '
|
|
||||||
else
|
|
||||||
PS1='${debian_chroot:+($debian_chroot)}\u@\H:\w\$ '
|
|
||||||
fi
|
|
||||||
unset color_prompt force_color_prompt
|
|
||||||
|
|
||||||
# If this is an xterm set the title to user@host:dir
|
|
||||||
case "$TERM" in
|
|
||||||
xterm*|rxvt*)
|
|
||||||
PS1="\[\e]0;${debian_chroot:+($debian_chroot)}\u@\H: \w\a\]$PS1"
|
|
||||||
;;
|
|
||||||
*)
|
|
||||||
;;
|
|
||||||
esac
|
|
||||||
|
|
||||||
# enable color support of ls and also add handy aliases
|
|
||||||
if [ -x /usr/bin/dircolors ]; then
|
|
||||||
test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)"
|
|
||||||
alias ls='ls --color=auto'
|
|
||||||
alias dir='dir --color=auto'
|
|
||||||
alias vdir='vdir --color=auto'
|
|
||||||
|
|
||||||
alias grep='grep --color=auto'
|
|
||||||
alias fgrep='fgrep --color=auto'
|
|
||||||
alias egrep='egrep --color=auto'
|
|
||||||
fi
|
|
||||||
|
|
||||||
# colored GCC warnings and errors
|
|
||||||
#export GCC_COLORS='error=01;31:warning=01;35:note=01;36:caret=01;32:locus=01:quote=01'
|
|
||||||
|
|
||||||
# some more ls aliases
|
|
||||||
alias ll='ls -l'
|
|
||||||
alias la='ls -A'
|
|
||||||
#alias l='ls -CF'
|
|
||||||
|
|
||||||
# Alias definitions.
|
|
||||||
# You may want to put all your additions into a separate file like
|
|
||||||
# ~/.bash_aliases, instead of adding them here directly.
|
|
||||||
# See /usr/share/doc/bash-doc/examples in the bash-doc package.
|
|
||||||
|
|
||||||
if [ -f ~/.bash_aliases ]; then
|
|
||||||
. ~/.bash_aliases
|
|
||||||
fi
|
|
||||||
|
|
||||||
# enable programmable completion features (you don't need to enable
|
|
||||||
# this, if it's already enabled in /etc/bash.bashrc and /etc/profile
|
|
||||||
# sources /etc/bash.bashrc).
|
|
||||||
if ! shopt -oq posix; then
|
|
||||||
if [ -f /usr/share/bash-completion/bash_completion ]; then
|
|
||||||
. /usr/share/bash-completion/bash_completion
|
|
||||||
elif [ -f /etc/bash_completion ]; then
|
|
||||||
. /etc/bash_completion
|
|
||||||
fi
|
|
||||||
fi
|
|
27
.profile
27
.profile
|
@ -1,27 +0,0 @@
|
||||||
# ~/.profile: executed by the command interpreter for login shells.
|
|
||||||
# This file is not read by bash(1), if ~/.bash_profile or ~/.bash_login
|
|
||||||
# exists.
|
|
||||||
# see /usr/share/doc/bash/examples/startup-files for examples.
|
|
||||||
# the files are located in the bash-doc package.
|
|
||||||
|
|
||||||
# the default umask is set in /etc/profile; for setting the umask
|
|
||||||
# for ssh logins, install and configure the libpam-umask package.
|
|
||||||
#umask 022
|
|
||||||
|
|
||||||
# if running bash
|
|
||||||
if [ -n "$BASH_VERSION" ]; then
|
|
||||||
# include .bashrc if it exists
|
|
||||||
if [ -f "$HOME/.bashrc" ]; then
|
|
||||||
. "$HOME/.bashrc"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
|
|
||||||
# set PATH so it includes user's private bin if it exists
|
|
||||||
if [ -d "$HOME/bin" ] ; then
|
|
||||||
PATH="$HOME/bin:$PATH"
|
|
||||||
fi
|
|
||||||
|
|
||||||
# set PATH so it includes user's private bin if it exists
|
|
||||||
if [ -d "$HOME/.local/bin" ] ; then
|
|
||||||
PATH="$HOME/.local/bin:$PATH"
|
|
||||||
fi
|
|
39
.ssh/id_rsa
39
.ssh/id_rsa
|
@ -1,39 +0,0 @@
|
||||||
-----BEGIN OPENSSH PRIVATE KEY-----
|
|
||||||
b3BlbnNzaC1rZXktdjEAAAAABG5vbmUAAAAEbm9uZQAAAAAAAAABAAABlwAAAAdzc2gtcn
|
|
||||||
NhAAAAAwEAAQAAAYEAwBrERPsRRdcGqvA8ewNpNlMXZvUgtRPx0EZRiSGyMee749AH4K66
|
|
||||||
yXhndaEp0X4omT+DDeUe7gxE8LJs6RwHhIRptOdobUwTwQoHr6WCh0Hfh3hXl7nx9A4R9G
|
|
||||||
Ggj8v6YKGarSqvyzzcPxoPfZlpSKezGSLRWZaqS45ee8IX8Si6ujCfvgzxWaXAmR8bxZC0
|
|
||||||
JKyMNVYGu8qD0E7Niyh4QSLt32IKY5/DhzEAaq132tZp4PggASPg8RsLvKZ8h3bQHiHqB4
|
|
||||||
UCGVLq9apAyXQhSqtm/0tgCYcPkxeEukJnE4FrGQ00bsv/DBLpcmXUarygasqtA8QggR3e
|
|
||||||
Hn6nq+CMdSh3UXnulsLWdl+9SEnbgPWVvPvhMvM9UwSxCqfQbnNY9cHDvvURz/ZRGk0fPO
|
|
||||||
LjmtdW4VqFosVYvcyz8hZbvqoFLDNzfOIwdOWhARk3mBbv45QJJihgG/zTDj0g4uMzxKe/
|
|
||||||
YxT2vtThqaANXI/FJZi3NigLo5ApEgU9AZ2uIKqvAAAFoJ3yeFed8nhXAAAAB3NzaC1yc2
|
|
||||||
EAAAGBAMAaxET7EUXXBqrwPHsDaTZTF2b1ILUT8dBGUYkhsjHnu+PQB+Cuusl4Z3WhKdF+
|
|
||||||
KJk/gw3lHu4MRPCybOkcB4SEabTnaG1ME8EKB6+lgodB34d4V5e58fQOEfRhoI/L+mChmq
|
|
||||||
0qr8s83D8aD32ZaUinsxki0VmWqkuOXnvCF/Eourown74M8VmlwJkfG8WQtCSsjDVWBrvK
|
|
||||||
g9BOzYsoeEEi7d9iCmOfw4cxAGqtd9rWaeD4IAEj4PEbC7ymfId20B4h6geFAhlS6vWqQM
|
|
||||||
l0IUqrZv9LYAmHD5MXhLpCZxOBaxkNNG7L/wwS6XJl1Gq8oGrKrQPEIIEd3h5+p6vgjHUo
|
|
||||||
d1F57pbC1nZfvUhJ24D1lbz74TLzPVMEsQqn0G5zWPXBw771Ec/2URpNHzzi45rXVuFaha
|
|
||||||
LFWL3Ms/IWW76qBSwzc3ziMHTloQEZN5gW7+OUCSYoYBv80w49IOLjM8Snv2MU9r7U4amg
|
|
||||||
DVyPxSWYtzYoC6OQKRIFPQGdriCqrwAAAAMBAAEAAAGAOOO0W/k+FECpaNXcE1HfRoc01v
|
|
||||||
igxv8xDUzFuKaR7tWBfuWMb61PA3r0qJEhoTiLLVbxqJvBnR1lDSLJvf7e+w97fmdJNZTi
|
|
||||||
BLjDrfCFxyhq2eN5jSUz0eKYzpZaxjrR2uwAsmeBx94uG0HMdJWJ6EpBb6Av/yfvJpDyyh
|
|
||||||
Ogo3o8Ugc0R0Pt9W5wqufbgZZowrOWkfT36YT/pCCyHhPOCPwfFZgjG32kmdSZGv5kEBqP
|
|
||||||
IGBamfvWEZDA2Q00s6krVPnlezpWJxL+l8kp1s1E1OvjwoNWx3jlP0MqemGJq7sSikNjaD
|
|
||||||
yVmP7o04OcnMz5z9rYSm1F9oCdmUk92czqzuzDSUpedC+6ytSERfkQyr0+aj9FncFYGQay
|
|
||||||
+TEarqtSjVkMWu3MQrGqvWHwV0Q62uwuUjp3CZjYIlhLv220TYyfTL6HaeUPws1QZB5rKu
|
|
||||||
OqNkINqh3AkZXxKIxbYSn79DgpuqQXnUKWhKfIGlEMjHZLioVQyf9Js0xNceEaTp2BAAAA
|
|
||||||
wB+UaX9IH6qEwZ9nQK7zFXREG2F/FvjQ8dsqpTRaDPhu4DoeVktG+NEhN5D0da9IHGXMek
|
|
||||||
DkF1Wx0rmvqnKixZvYbGXHE11zdKa1KzwzTIQ1IBrLMizo7geHFVkgfZrcr8OMfRgH5Sor
|
|
||||||
KRwbbU5YnUPpFLqtA6RlqjpDFTXC+n6VODopiHOW9vMfaDT4DMoKAlW1yXLj3HQAFVnqcO
|
|
||||||
Ed/emFHU8wr6zoPImonLbBw++jvA0UeI5/BBOnIP00fBwhvgAAAMEA8HnPOFOpYa99R+wC
|
|
||||||
HwdLx+Xw0jDqxW5Ag8m/mzMFX3z4eKsWtTJ0FSyiuV5sEQDcqXNQWq+NJtY4UG46/JLtoD
|
|
||||||
Gn9muq87AqypAGvkzKF66X3Ly3lBANHWB9kYf/B/Qt3zzLzcuvcSCZ64P/XA9liLQCsHM+
|
|
||||||
6XTber2vulscAgWj37wUyd90w1sDrkIUKbyu6RHE0z5s6n541ytX4tlJefaca67iwKKBZp
|
|
||||||
orpoVtiU9Xqz2Kn/sw01w6OAnbSn4tAAAAwQDMgY5lP+P9X9GSoHc6DeukUXt5Mpscoqpw
|
|
||||||
6FbGrxc9WK2mNuHYaanqLWAENWoIkJ+1QAoSUcYqSRInCSeh3X5isBR/zw8a+LmsCBMM32
|
|
||||||
6k0YdhOhloxIJhjhgJ2Ub038/NIhIPNRupyKocQd+ZOI5VKHuthCxKGB3uolo5FYciJLz7
|
|
||||||
B+HcABLAkHtTfT3mdCUzVGr++kVMofuvnC4f1gkg2a9GkfI1JT3D/r+0cT4bTKT3YgS3ZJ
|
|
||||||
dXD/31EoCIMcsAAAAraXNlbmdhcmRfeG1wcEBpc2VuZ2FyZC5saWJyZS1lbi1jb21tdW5z
|
|
||||||
Lm9yZw==
|
|
||||||
-----END OPENSSH PRIVATE KEY-----
|
|
|
@ -1 +0,0 @@
|
||||||
ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDAGsRE+xFF1waq8Dx7A2k2Uxdm9SC1E/HQRlGJIbIx57vj0AfgrrrJeGd1oSnRfiiZP4MN5R7uDETwsmzpHAeEhGm052htTBPBCgevpYKHQd+HeFeXufH0DhH0YaCPy/pgoZqtKq/LPNw/Gg99mWlIp7MZItFZlqpLjl57whfxKLq6MJ++DPFZpcCZHxvFkLQkrIw1Vga7yoPQTs2LKHhBIu3fYgpjn8OHMQBqrXfa1mng+CABI+DxGwu8pnyHdtAeIeoHhQIZUur1qkDJdCFKq2b/S2AJhw+TF4S6QmcTgWsZDTRuy/8MEulyZdRqvKBqyq0DxCCBHd4efqer4Ix1KHdRee6WwtZ2X71ISduA9ZW8++Ey8z1TBLEKp9Buc1j1wcO+9RHP9lEaTR884uOa11bhWoWixVi9zLPyFlu+qgUsM3N84jB05aEBGTeYFu/jlAkmKGAb/NMOPSDi4zPEp79jFPa+1OGpoA1cj8UlmLc2KAujkCkSBT0Bna4gqq8= isengard_xmpp@isengard.libre-en-communs.org
|
|
|
@ -1,2 +0,0 @@
|
||||||
|1|YsPM9bo+wHZbzMaqYDUx61uCepc=|qSWaJ1CNo0oLNdP/IpCIa246PlI= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDv3H1JlE7Elm6zxa5sSu63H/V33gWm5b0klR8WEi7j9MnFMirE2NRkYTD21SPQy0fGWuyn3IOq2oZ9jEcEChX4=
|
|
||||||
|1|HmPlyVmhWK6XSBkw4UIDkkR89Xs=|LpPJ41Glo+04gRSpKCXpYbpCjUQ= ecdsa-sha2-nistp256 AAAAE2VjZHNhLXNoYTItbmlzdHAyNTYAAAAIbmlzdHAyNTYAAABBBDv3H1JlE7Elm6zxa5sSu63H/V33gWm5b0klR8WEi7j9MnFMirE2NRkYTD21SPQy0fGWuyn3IOq2oZ9jEcEChX4=
|
|
Loading…
Reference in New Issue