From c3980df073c257c4145f649bb39350c9105962da Mon Sep 17 00:00:00 2001 From: Derek Smith Date: Thu, 9 Mar 2023 09:58:56 -0500 Subject: [PATCH] Various plumbing updates. --- defaults.sh | 2 +- deployment/.gitignore | 2 -- deployment/migrate.sh | 2 +- deployment/remote.sh | 2 +- deployment/show.sh | 11 +++++------ 5 files changed, 8 insertions(+), 11 deletions(-) delete mode 100644 deployment/.gitignore mode change 100644 => 100755 deployment/remote.sh diff --git a/defaults.sh b/defaults.sh index 6bb02cd..0b7e587 100755 --- a/defaults.sh +++ b/defaults.sh @@ -100,4 +100,4 @@ export ROOT_DISK_SIZE_GB=20 export REGISTRY_URL="https://index.docker.io/v1/" export PRIMARY_DOMAIN= -export TARGET_PROJECT_GIT_COMMIT=d3a1a36de08cc9ff25b854b960b52257d21291a4 +export TARGET_PROJECT_GIT_COMMIT=fbc6e2b6e50fa2f1a6cbc75d44f1a1e92917a792 diff --git a/deployment/.gitignore b/deployment/.gitignore deleted file mode 100644 index e8246f5..0000000 --- a/deployment/.gitignore +++ /dev/null @@ -1,2 +0,0 @@ -# this is tracked in a distinct git repo. -project \ No newline at end of file diff --git a/deployment/migrate.sh b/deployment/migrate.sh index ba9b16d..2276d9a 100755 --- a/deployment/migrate.sh +++ b/deployment/migrate.sh @@ -1,6 +1,6 @@ #!/bin/bash -set -exu +set -eu cd "$(dirname "$0")" diff --git a/deployment/remote.sh b/deployment/remote.sh old mode 100644 new mode 100755 index 55ea1cb..56a17b0 --- a/deployment/remote.sh +++ b/deployment/remote.sh @@ -1,6 +1,6 @@ #!/bin/bash -set -ex +set -e cd "$(dirname "$0")" # This script is meant to be executed on the management machine. diff --git a/deployment/show.sh b/deployment/show.sh index 4dcc125..0edce6d 100755 --- a/deployment/show.sh +++ b/deployment/show.sh @@ -1,10 +1,9 @@ #!/bin/bash -lxc list +lxc remote list +lxc storage list +lxc image list +lxc project list lxc network list lxc profile list -lxc image list -lxc storage list -lxc storage info ss-base -lxc project list -lxc remote list \ No newline at end of file +lxc list \ No newline at end of file