2018-02-02 04:14:37 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-02-09 03:04:36 +00:00
|
|
|
ISUCS="$(hostname |grep ucs -c)"
|
|
|
|
|
|
|
|
if [ $ISUCS -ne 0 ]; then
|
|
|
|
echo "Do not run this on ucs host. Exiting..."
|
|
|
|
exit 1
|
|
|
|
fi
|
|
|
|
|
|
|
|
apt -y install htop glances sssd-ad dstat ladvd snmpd ntp tcpdump autofs
|