Playwright doesn't support Fedora distribution. Following is a description how to run the tests using Ubuntu 22.04 image using distrobox which is fairy supported on various Linux distributions.
sudo dnf install distrobox podman| #!/usr/bin/env bash | |
| # lcc - Local Claude Code launcher | |
| # Points Claude Code at a local LLM served by llama.cpp on your GB10 device | |
| # | |
| # Usage: | |
| # lcc <modelname> — launch Claude Code with the specified model | |
| # lcc <modelname> [args] — pass additional arguments to claude | |
| # lcc — show help/launch with model if one is available | |
| # | |
| # Prerequisites: |
Playwright doesn't support Fedora distribution. Following is a description how to run the tests using Ubuntu 22.04 image using distrobox which is fairy supported on various Linux distributions.
sudo dnf install distrobox podman| # | |
| # Copyright (C) 2013-2020 Vinay Sajip. New BSD License. | |
| # | |
| import os | |
| import os.path | |
| from subprocess import Popen, PIPE | |
| import sys | |
| from threading import Thread | |
| from urllib.parse import urlparse | |
| from urllib.request import urlretrieve |
Jon Warbrick, July 2014, V3.2 (for Ansible 1.7)
First one found from of
| #! /usr/bin/python | |
| import sys | |
| import ldap | |
| from ldap.controls import SimplePagedResultsControl | |
| from distutils.version import LooseVersion | |
| # Check if we're using the Python "ldap" 2.4 or greater API | |
| LDAP24API = LooseVersion(ldap.__version__) >= LooseVersion('2.4') |
| # | |
| # Ansible playbook to prepare the undercloud machine. | |
| # Will preform all steps until custom steps are to be taken -- | |
| # which are: providing a custom undercloud.conf and running | |
| # openstack install undercloud command and so on... | |
| # Root SSH access to the remote machine has to be configured. | |
| # Edit vars as necessary. | |
| # | |
| # If this is the first time you are using Ansible on a host, |
| #!/usr/bin/python | |
| import sys | |
| import re | |
| import subprocess | |
| if len(sys.argv) != 2: | |
| print "bridge name needed" | |
| sys.exit() |
| dnf install -y ansible qemu-img qemu-kvm wget unzip | |
| cd /tmp | |
| wget https://releases.hashicorp.com/packer/1.1.1/packer_1.1.1_linux_amd64.zip | |
| unzip packer*.zip | |
| # Use packerio as a binary name, because packer binary already exists in fedora : /usr/sbin/packer as part of cracklib-dicts package | |
| mv packer /usr/local/bin/packerio | |
| # Install WinRM communicator for Packer (https://www.packer.io/docs/provisioners/ansible.html#winrm-communicator) |