popstas@popstas-home:~/projects/_temp% sysbench --test=fileio prepare && sysbench --test=fileio --file-test-mode=rndrw run && sysbench --test=fileio cleanup
WARNING: the --test option is deprecated. You can pass a script name or path on the command line without any options.
sysbench 1.0.7 (using bundled LuaJIT 2.1.0-beta2)
Running the test with following options:
Number of threads: 1
Initializing random number generator from current time
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 a/includes/bootstrap.inc b/includes/bootstrap.inc | |
index 06acf93..d5963a0 100644 | |
--- a/includes/bootstrap.inc | |
+++ b/includes/bootstrap.inc | |
@@ -2778,6 +2778,31 @@ function _drupal_bootstrap_variables() { | |
// Load bootstrap modules. | |
require_once DRUPAL_ROOT . '/includes/module.inc'; | |
module_load_all(TRUE); | |
+ | |
+ // Sanitize the destination parameter (which is often used for redirects) to |
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
d-i debian-installer/locale string en_US.UTF-8 | |
d-i debian-installer/splash boolean false | |
d-i console-setup/ask_detect boolean false | |
d-i console-setup/layoutcode string us | |
d-i console-setup/variantcode string | |
choose-mirror-bin mirror/http/proxy string | |
d-i debian-installer/language string en | |
d-i debian-installer/country string RU | |
d-i console-setup/ask_detect boolean false | |
d-i keyboard-configuration/xkb-keymap select us |
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
{"lastUpload":"2022-01-23T18:42:09.724Z","extensionVersion":"v3.4.3"} |
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
--- | |
- hosts: localhost | |
remote_user: popstas | |
roles: | |
- { name: viasite-ansible.zsh, zsh_user: popstas } |
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
sudo apt-get install -y python-dev python-pip | |
sudo pip install ansible | |
sudo ansible-galaxy install geerlingguy.apache geerlingguy.mysql geerlingguy.php | |
wget https://gist.githubusercontent.com/popstas/61a5ddce08fe1a269f62576808cee54e/raw/de7bceea261f5a76fd88d8673046e5e18be7e35a/lamp.yml | |
ansible-playbook -i 'localhost,' -c local lamp.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
#!/bin/bash -eux | |
# Install Ansible repository. | |
apt -y update && apt-get -y upgrade | |
apt -y install software-properties-common | |
apt-add-repository ppa:ansible/ansible | |
# Install Ansible. | |
apt -y update | |
apt -y install ansible |
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
'use strict'; | |
var argv = require('yargs').argv; | |
var autoprefixer = require('autoprefixer'); | |
var cleanCSS = require('gulp-clean-css'); | |
var concat = require('gulp-concat'); | |
var debug = require('gulp-debug'); | |
var duration = require('gulp-duration'); | |
var gulp = require('gulp'); | |
var gulpif = require('gulp-if'); |
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
#!/bin/bash | |
set -eu | |
if [ "$#" != 1 ] && [ "$#" != 2 ]; then | |
echo "Usage: | |
# run 'command' with 5 cycles | |
average 'command' | |
# run 'command' with 3 cycles |