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
<?php | |
namespace Drupal\oht_migrate\Plugin\migrate\process; | |
use Drupal\Core\Plugin\ContainerFactoryPluginInterface; | |
use Drupal\migrate\Annotation\MigrateProcessPlugin; | |
use Drupal\migrate\Plugin\migrate\process\MigrationLookup; | |
use Drupal\migrate\Plugin\MigratePluginManagerInterface; | |
use Drupal\migrate\Plugin\MigrationInterface; | |
use Drupal\migrate\ProcessPluginBase; |
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
{ | |
"buildings": { | |
"OSU Open Campus - Corvallis": { | |
"new": "ce450c4443a09e5635165df7b4a8bd74", | |
"old": "ce450c4443a09e5635165df7b4a8bd74" | |
}, | |
"North Porch Cafe": { | |
"new": "dde04c526a9605a44084a4a9f7e08f96", | |
"old": "46aca402f531a0d513ef8d9413533866" | |
}, |
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
#!/bin/sh | |
# | |
# Script to prepare and restore full and incremental backups created with innobackupex-runner. | |
# | |
# This script is provided as-is; no liability can be accepted for use. | |
# | |
INNOBACKUPEX=innobackupex-1.5.1 | |
INNOBACKUPEXFULL=/usr/bin/$INNOBACKUPEX | |
TMPFILE="/tmp/innobackupex-restore.$$.tmp" |