promenade/tools/deployment/apparmor/001-setup-apparmor-profiles.sh
Ruslan Aliev 4b349d9471 ETCD aux pod define resources
Signed-off-by: Ruslan Aliev <raliev@mirantis.com>
Change-Id: Ib2e666572fbe76bfa1ff542dd76e3c1d833e9268
2024-05-21 20:28:18 -05:00

21 lines
755 B
Bash
Executable File

#!/bin/bash
# Licensed under the Apache License, Version 2.0 (the "License"); you may
# not use this file except in compliance with the License. You may obtain
# a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations
# under the License.
set -xe
# Ensure that apparmor is installed and enabled
sudo -H -E apt-get install -y apparmor
sudo systemctl enable apparmor && sudo systemctl start apparmor
sudo systemctl status apparmor.service