Updated Drupal to 8.6. This goes with the following updates because it's possible...
[yaffs-website] / vendor / consolidation / site-alias / tests / fixtures / sitealiases / legacy / cc.aliases.drushrc.php
diff --git a/vendor/consolidation/site-alias/tests/fixtures/sitealiases/legacy/cc.aliases.drushrc.php b/vendor/consolidation/site-alias/tests/fixtures/sitealiases/legacy/cc.aliases.drushrc.php
new file mode 100644 (file)
index 0000000..c077dcc
--- /dev/null
@@ -0,0 +1,43 @@
+<?php
+
+$aliases['live'] = array (
+  'parent' => '@server.digital-ocean',
+  'project-type' => 'live',
+  'root' => '/srv/www/couturecostume.com/htdocs',
+  'uri' => 'couturecostume.com',
+  'path-aliases' => array(
+    '%dump-dir' => '/var/sql-dump/',
+  ),
+  'target-command-specific' => array(
+    'sql-sync' => array(
+      'disable' => array('stage_file_proxy'),
+      'permission' => array(
+        'authenticated user' => array(
+          'remove' => array('access environment indicator'),
+        ),
+        'anonymous user' => array(
+          'remove' => 'access environment indicator',
+        ),
+      ),
+    ),
+  ),
+);
+
+$aliases['update'] = array (
+  'parent' => '@server.nitrogen',
+  'root' => '/srv/www/update.couturecostume.com/htdocs',
+  'uri' => 'update.couturecostume.com',
+  'target-command-specific' => array(
+    'sql-sync' => array(
+      'enable' => array('environment_indicator', 'stage_file_proxy'),
+      'permission' => array(
+        'authenticated user' => array(
+          'add' => array('access environment indicator'),
+        ),
+        'anonymous user' => array(
+          'add' => 'access environment indicator',
+        ),
+      ),
+    ),
+  ),
+);