amelioration hostname et csv

This commit is contained in:
2021-02-23 10:58:09 +01:00
parent 9921222131
commit 5b642806b1

View File

@@ -1,15 +1,16 @@
#! /bin/bash
set -euo pipefail
set -eu
IFS=$'\n\t'
source functions.sh
echo -ne "host\tname\troot history\tbash history\t<+CHANGEME+>\n"
for host in /srv/lxc/ipi/ipi_g1*/rootfs ; do
root=${host}
#host=$(basename $host)
hostname=$(grep HOSTNAME ${root}/etc/sysconfig/network | cut -f2 -d=)
echo -ne "host;name;root history;bash history;<+CHANGEME+>\n"
for host in /srv/lxc/epsi/b2/* ; do
root=${host}/rootfs
host=$(basename $host)
hostname=$(grep HOSTNAME ${root}/etc/sysconfig/network 2>/dev/null| cut -f2 -d=)
test -z "${hostname}" && hostname=$(cat ${root}/etc/hostname)
test -f ${root}/etc/motd && user="$(cat ${root}/etc/motd | sed 's/\n//')\t"
echo -ne "${hostname}\t${user}"
test -f ${root}/etc/motd && user="$(cat ${root}/etc/motd | xargs)"
test -z "$user" && continue
echo -ne "${hostname};${user};"
fileMTime ${root}/root/.bash_history
fileMTime ${root}/home/formation/.bash_history