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
{20:07}:{ ~/Documents/side-projects/allure2 }(fix-rpm-requires)$ docker run -ti --rm -v $(pwd):/app:Z opensuse/leap zypper install /app/allure-commandline/build/distributions/allure-2.15~SNAPSHOT-1.noarch.rpm | |
Retrieving repository 'Non-OSS Repository' metadata ................................................................................................................................................................[done] | |
Building repository 'Non-OSS Repository' cache .....................................................................................................................................................................[done] | |
Retrieving repository 'Main Repository' metadata ...................................................................................................................................................................[done] | |
Building repository 'Main Repository' cache .................................................................................................................. |
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
{20:04}:{ ~/Documents/side-projects/allure2 }(fix-rpm-requires)$ docker run -ti --rm -v $(pwd):/app:Z fedora:34 dnf install /app/allure-commandline/build/distributions/allure-2.15~SNAPSHOT-1.noarch.rpm | |
Resolved "fedora" as an alias (/etc/containers/registries.conf.d/000-shortnames.conf) | |
Trying to pull registry.fedoraproject.org/fedora:34... | |
Getting image source signatures | |
Copying blob 7679c09af385 done | |
Copying config 3567369c67 done | |
Writing manifest to image destination | |
Storing signatures | |
Fedora 34 openh264 (From Cisco) - x86_64 810 B/s | 2.5 kB 00:03 | |
Fedora Modular 34 - x86_64 2.5 MB/s | 4.9 MB 00:01 |
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
{20:04}:{ ~/Documents/side-projects/allure2 }(fix-rpm-requires)$ docker run -ti --rm -v $(pwd):/app:Z centos:7 yum install /app/allure-commandline/build/distributions/allure-2.15~SNAPSHOT-1.noarch.rpm | |
Loaded plugins: fastestmirror, ovl | |
Examining /app/allure-commandline/build/distributions/allure-2.15~SNAPSHOT-1.noarch.rpm: allure-2.15~SNAPSHOT-1.noarch | |
Marking /app/allure-commandline/build/distributions/allure-2.15~SNAPSHOT-1.noarch.rpm to be installed | |
Resolving Dependencies | |
--> Running transaction check | |
---> Package allure.noarch 0:2.15~SNAPSHOT-1 will be installed | |
--> Processing Dependency: java-1.8.0 for package: allure-2.15~SNAPSHOT-1.noarch | |
Determining fastest mirrors | |
* base: centos-mirror.rbc.ru |
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
variable "ext_network_name" { | |
default = "ext-net" | |
} | |
variable "instances_count" { | |
default = 1 | |
} | |
resource "random_pet" test { | |
prefix = "test" |
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 | |
from __future__ import print_function | |
import argparse | |
import os | |
from pcore import constants | |
from psys import Error, b | |
from psh import sh |
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
#define _FILE_OFFSET_BITS 64 | |
#define _GNU_SOURCE 1 | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <sys/param.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <unistd.h> | |
#include <fcntl.h> |
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
#define _FILE_OFFSET_BITS 64 | |
#define _GNU_SOURCE 1 | |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <sys/types.h> | |
#include <sys/stat.h> | |
#include <unistd.h> | |
#include <fcntl.h> |
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 | |
# -*- coding: utf-8 -*- | |
from __future__ import unicode_literals | |
from __future__ import print_function | |
import argparse | |
import json | |
import requests |