This repository has been archived by the owner on Feb 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
EOS-23243 fix for confstore create failed intermittent issue (#6009)
* EOS-23243 fix for confstore create failed intermittent issue Signed-off-by: zahid.shaikh <zahid.shaikh@seagate.com> * EOS-23243 fix for confstore create failed intermittent issue Signed-off-by: zahid.shaikh <zahid.shaikh@seagate.com> * EOS-23243 Review comments incorporated Signed-off-by: zahid.shaikh <zahid.shaikh@seagate.com> Co-authored-by: Nitin <75619801+nitin-seagate@users.noreply.github.com>
- Loading branch information
1 parent
9831668
commit 8904f60
Showing
3 changed files
with
32 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# | ||
# Copyright (c) 2020 Seagate Technology LLC and/or its Affiliates | ||
# | ||
# This program is free software: you can redistribute it and/or modify | ||
# it under the terms of the GNU Affero General Public License as published | ||
# by the Free Software Foundation, either version 3 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 Affero General Public License for more details. | ||
# You should have received a copy of the GNU Affero General Public License | ||
# along with this program. If not, see <https://www.gnu.org/licenses/>. | ||
# For any questions about this software or licensing, | ||
# please email opensource@seagate.com or cortx-questions@seagate.com. | ||
# | ||
|
||
{% set profile_confstore = "/var/lib/seagate/cortx/provisioner/shared/factory_profile/confstore" %} | ||
|
||
Create confstore dir in profile path: | ||
file.directory: | ||
- name: {{ profile_confstore }} | ||
- user: root | ||
- group: root | ||
- dir_mode: 640 | ||
- makedirs: True |