diff options
Diffstat (limited to 'server')
-rwxr-xr-x | server/lib/ogfunctions.sh | 1 | ||||
-rwxr-xr-x | server/lib/supportsave | 44 |
2 files changed, 26 insertions, 19 deletions
diff --git a/server/lib/ogfunctions.sh b/server/lib/ogfunctions.sh index 413a700c..f1b9e555 100755 --- a/server/lib/ogfunctions.sh +++ b/server/lib/ogfunctions.sh @@ -43,6 +43,7 @@ function help() { USAGE=$(grep "^#@usage" "$0" | cut -f2- -d" ") [ -n "$USAGE" ] && PARAMS=$(awk '$1=="#@param" {sub($1,""); print "\t",$0}' "$0") fi + [ "$PROG" ] || PROG="$(basename "$0")" # Showing help. echo "$PROG: ${DESCRIPTION:-"no description"}" echo "Usage: ${USAGE:-"no usage info"}" diff --git a/server/lib/supportsave b/server/lib/supportsave index 67da7ed2..e5a9fd20 100755 --- a/server/lib/supportsave +++ b/server/lib/supportsave @@ -1,14 +1,16 @@ #!/bin/bash -######################################################################## -# # -# This script creates a tarball containing all logs and necesary files # -# in order to debug a remote system. Initially the tarball would be # -# manually sent by the final user to the support team. On a second # -# stage this support save would be inclued in the GUI. # -# # -# Autor: Fredy <aluque@soleta.eu> 2018 Q1 # -# # -######################################################################## + +#/** +#@file supportsave +#@brief This script creates a tarball containing all logs and necesary files in order to debug a remote system. +#@brief Initially the tarball would be manually sent by the final user to the support team. +#@brief On a second stage this support save would be inclued in the GUI. +#@usage supportsave +#@version 1.1.0 +#@author Fredy <aluque@soleta.eu> +#@date 2018-03-01 +#*/ ## + # Basic structure # Date, Hostname and Paths @@ -18,11 +20,6 @@ PATH=/bin:/sbin:/usr/bin:/usr/sbin -if [ "$(whoami)" != "root" ]; then - echo "ERROR: Need to be root." >&2 - exit 1 -fi - tmp_name=`date +%Y%m%d_%H%M` hostname=`hostname` home_dir="/opt/opengnsys" @@ -34,6 +31,13 @@ if [ ! -d ${home_dir} ]; then exit 1 fi +source ${home_dir}/lib/ogfunctions.sh || exit 1 + +[ "$*" == "help" ] && help +[ "$*" == "version" ] && version +[ "$*" ] && raiseError usage +[ "$(whoami)" != "root" ] && raiseError access "Need to be root." + if [ -d "$1" ]; then prefix=${1} fi @@ -51,10 +55,10 @@ echo "Saving system information:" ################################# echo "- System version" -if which lsb_release &>/dev/null; then - lsb_release -a >> $backup_dir/operating_system.txt 2>&1 -elif [ -r /etc/os-release ]; then +if [ -r /etc/os-release ]; then cat /etc/os-release >> $backup_dir/operating_system.txt 2>&1 +elif which lsb_release &>/dev/null; then + lsb_release -a >> $backup_dir/operating_system.txt 2>&1 elif [ -r /etc/system-release ]; then cat /etc/system-release >> $backup_dir/operating_system.txt 2>&1 fi @@ -76,8 +80,10 @@ echo "--- uname -a ---" >> $backup_dir/kernel.txt uname -a >> $backup_dir/kernel.txt 2>&1 echo -e "\n--- lsmod ---" >> $backup_dir/kernel.txt lsmod >> $backup_dir/kernel.txt 2>&1 +echo -e "\n--- Boot parameters ---" >> $backup_dir/kernel.txt +cat /proc/cmdline >> $backup_dir/kernel.txt 2>&1 echo "- Kernel boot messages" -echo "--- dmesg ---" >> $backup_dir/kernel.txt +echo -e "\n--- dmesg ---" >> $backup_dir/kernel.txt dmesg >> $backup_dir/kernel.txt 2>&1 echo "- Packages" |