# install
$ sudo dnf copr enable maxamillion/nvidia-openshell
$ sudo dnf install openshell-gateway openshell
# start the rootless user systemd service unit
$ systemctl --user start openshell-gateway.serviceYou may have ended up here by following a link from one of my PRs marked with an Assisted-by trailer. There is a large variance currently in (1) what patch authors may mean when they say "Assisted-by", and (2) what patch reviewers may interpret when they see "Assisted-by". This document describes what "Assisted-by" means for my commits to reduce guesswork and have a productive collaboration. (Unless I've explicitly stated in the commit or PR body that it should be interpreted differently.)
- I used an AI coding agent to help me write some (or rarely, all) of the patch.
- I take full responsibility for the changes in the patch.
- I self-reviewed every line in the patch and understand its logic.
- I made a best effort to verify its fit within the larger design of the project.
this is based on the following PR as a prerequisite, setup 2 zones multisite setup:
MON=1 OSD=1 MDS=0 MGR=0 ../src/test/rgw/test-rgw-multisite.sh to use the AWS CLI tool, following env variables should be set:
export AWS_ACCESS_KEY_ID=1234567890
export AWS_SECRET_ACCESS_KEY=pencil
This file contains hidden or 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
| # create the new rpm directory | |
| mkdir rpm-hammer | |
| cd rpm-hammer | |
| # make the directories for the distros we need for x86_64 | |
| mkdir -p el6/x86_64/ | |
| mkdir -p el7/x86_64/ | |
| mkdir -p fc20/x86_64/ | |
| mkdir -p rhel6/x86_64/ | |
| mkdir -p rhel7/x86_64/ |
This file contains hidden or 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
| #coding: utf-8 | |
| import keychain | |
| import console | |
| import editor | |
| import time | |
| import re | |
| import requests | |
| import json |