-
Reset to factory defaults
reset config bootstrap reset config
The username is
admin
and the password isaerohive
orAerohive1
.
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
diff --git koku/api/test_utils.py koku/api/test_utils.py | |
index 960f4653..daf3c376 100644 | |
--- koku/api/test_utils.py | |
+++ koku/api/test_utils.py | |
@@ -290,12 +290,10 @@ class GetMonthsInDateRangeTest(unittest.TestCase): | |
self.early_start_date = datetime.datetime(2022, 4, 3, tzinfo=pytz.UTC) | |
self.early_end_date = datetime.datetime(2022, 4, 12, tzinfo=pytz.UTC) | |
- @patch("api.utils.DateAccessor.today") | |
@patch("api.utils.DateHelper.today", new_callable=PropertyMock) |
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
#!/usr/bin/env python | |
# Modify a collection to use the new coverage uploader | |
import argparse | |
import pathlib | |
import shutil | |
import sys | |
import urllib.request |
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
require 'formula' | |
class Sshpass < Formula | |
url 'http://sourceforge.net/projects/sshpass/files/sshpass/1.06/sshpass-1.06.tar.gz' | |
homepage 'http://sourceforge.net/projects/sshpass' | |
sha256 'c6324fcee608b99a58f9870157dfa754837f8c48be3df0f5e2f3accf145dee60' | |
def install | |
system "./configure", "--disable-debug", "--disable-dependency-tracking", | |
"--prefix=#{prefix}" |
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
tasks: | |
- name: Install chrony | |
dnf: | |
name: chrony | |
state: present | |
- name: Start, enable, and unmask | |
systemd: | |
name: chronyd | |
state: started |
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
# -*- coding: utf-8 -*- | |
# Copyright (c) 2020 Ansible Project | |
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) | |
from __future__ import absolute_import, division, print_function | |
__metaclass__ = type | |
import pytest | |
import datetime |
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
#!/usr/bin/python | |
# -*- coding: utf-8 -*- | |
# Copyright (c) 2020 Sam Doran | |
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt) | |
from __future__ import absolute_import, division, print_function | |
__metaclass__ = type | |
DOCUMENTATION = """ |
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
#!/usr/bin/env python | |
import argparse | |
import os | |
import sys | |
import yaml | |
parser = argparse.ArgumentParser() | |
parser.add_argument('--number', '-n', default=100) | |
parser.add_argument('--name', '-f', default='hosts.yml') |
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
Traceback (most recent call last): | |
File "/Users/sdoran/Source/ansible/bin/ansible-playbook", line 110, in <module> | |
exit_code = cli.run() | |
File "/Users/sdoran/Source/ansible/lib/ansible/cli/playbook.py", line 123, in run | |
results = pbex.run() | |
File "/Users/sdoran/Source/ansible/lib/ansible/executor/playbook_executor.py", line 169, in run | |
result = self._tqm.run(play=play) | |
File "/Users/sdoran/Source/ansible/lib/ansible/executor/task_queue_manager.py", line 249, in run | |
play_return = strategy.run(iterator, play_context) |
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
#!/usr/bin/env python | |
import argparse | |
import re | |
import os | |
from github3 import GitHub | |
parser = argparse.ArgumentParser() | |
parser.add_argument('prs', nargs='+') |
NewerOlder