Skip to content

Instantly share code, notes, and snippets.

@mainframe
Created May 27, 2013 21:12
Show Gist options
  • Save mainframe/5659116 to your computer and use it in GitHub Desktop.
Save mainframe/5659116 to your computer and use it in GitHub Desktop.
Setup Dell OpenManage software and management service
#!/bin/bash
# Copyright (C) 2013, OpenNode LLC. All rights reserved.
# Email: info@opennodecloud.com
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
#
# DESCRIPTION:
# Setup Dell OpenManage software and management service
echo "Bootstrapping Dell OpenManage..."
wget -q -O - http://linux.dell.com/repo/hardware/latest/bootstrap.cgi | bash
echo "Installing Dell OpenManage rpms..."
yum install srvadmin-all -y
echo "Starting Dell OpenManage services..."
/opt/dell/srvadmin/sbin/srvadmin-services.sh start
echo "Dell OpenManage services status:"
/opt/dell/srvadmin/sbin/srvadmin-services.sh status
echo "Please connect to Dell OpenManage Console as: https://$HOSTNAME:1311"
echo "with root:pam_password"
exit 0
@mainframe
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment