BlueOnyx.txt
· 468 B · Text
Raw
#
sudo sed -i 's/^SELINUX=.*/SELINUX=permissive/g' /etc/selinux/config && sudo dnf -y update && reboot
sudo dnf -y install epel-release git wget curl
if curl -q -LSsf http://devel.blueonyx.it/pub/5211R.rpm -o /tmp/blueonyx.rpm; then
if yum localinstall -y /tmp/blueonyx.rpm;then
yum clean all
if yum update -y && yum groupinstall -y blueonyx; then
sh /usr/sausalito/scripts/initServices.sh && reboot
fi
fi
fi
#
Username: root
Password: blueonyx
1 | # |
2 | sudo sed -i 's/^SELINUX=.*/SELINUX=permissive/g' /etc/selinux/config && sudo dnf -y update && reboot |
3 | sudo dnf -y install epel-release git wget curl |
4 | if curl -q -LSsf http://devel.blueonyx.it/pub/5211R.rpm -o /tmp/blueonyx.rpm; then |
5 | if yum localinstall -y /tmp/blueonyx.rpm;then |
6 | yum clean all |
7 | if yum update -y && yum groupinstall -y blueonyx; then |
8 | sh /usr/sausalito/scripts/initServices.sh && reboot |
9 | fi |
10 | fi |
11 | fi |
12 | # |
13 | Username: root |
14 | Password: blueonyx |
15 |