Skip to content

Commit

Permalink
Fix packstack's article indentation
Browse files Browse the repository at this point in the history
Change-Id: Ic9da644d7288fe92d7cde6a8bfecf1483fdf0475
  • Loading branch information
karolinku committed Aug 12, 2024
1 parent b0dbf0c commit 71a3f44
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions docs/deploy/packstack.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ If your system meets all the prerequisites mentioned below, proceed with running
* On CentOS Stream 9:

```
$ sudo dnf update -y;
sudo dnf config-manager --enable crb;
sudo dnf install -y centos-release-openstack-caracal;
sudo setenforce 0;
sudo dnf update -y;
sudo dnf install -y openstack-packstack;
sudo packstack --allinone
$ sudo dnf update -y;
sudo dnf config-manager --enable crb;
sudo dnf install -y centos-release-openstack-caracal;
sudo setenforce 0;
sudo dnf update -y;
sudo dnf install -y openstack-packstack;
sudo packstack --allinone
```

**Note for RHEL:** Although it is expected that RDO works fine on RHEL, it is currently not tested in RHEL OS.
Expand All @@ -63,12 +63,12 @@ Machine with at least 16GB RAM, processors with hardware virtualization extensio

Name the host with a fully qualified domain name rather than a short-form name to avoid DNS issues with Packstack. FQDN can be defined by command:
```
sudo hostnamectl set-hostname [hostname.domain]
$ sudo hostnamectl set-hostname [hostname.domain]
```
example:
```
sudo hostnamectl set-hostname packstack-host.example.com
$ sudo hostnamectl set-hostname packstack-host.example.com
```

Expand All @@ -80,12 +80,12 @@ If you plan on having **external** network access to the server and instances, t
Disable firewalld and NetworkManager

```
$ sudo systemctl disable firewalld;
sudo systemctl stop firewalld;
sudo systemctl disable NetworkManager;
sudo systemctl stop NetworkManager;
sudo systemctl enable network;
sudo systemctl start network
$ sudo systemctl disable firewalld;
sudo systemctl stop firewalld;
sudo systemctl disable NetworkManager;
sudo systemctl stop NetworkManager;
sudo systemctl enable network;
sudo systemctl start network
```


Expand Down

0 comments on commit 71a3f44

Please sign in to comment.