summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authortv <tv@shackspace.de>2015-05-20 19:07:33 +0200
committertv <tv@shackspace.de>2015-05-20 19:07:33 +0200
commita145561ece1602b46258d59768f04b7fc3b2764d (patch)
tree4936054a9b239cbf11f5aa37f0722608cd526d49
parent3120446d3c28f800173493f750c99632d8329f20 (diff)
mv cac_listservers from infest to lib/cac.sh
-rwxr-xr-xinfest12
-rw-r--r--lib/cac.sh9
2 files changed, 10 insertions, 11 deletions
diff --git a/infest b/infest
index b9332169..255ba242 100755
--- a/infest
+++ b/infest
@@ -2,6 +2,7 @@
set -xeuf
. ./lib/prelude.sh
+. ./lib/cac.sh
nix_url=https://nixos.org/releases/nix/nix-1.8/nix-1.8-x86_64-linux.tar.bz2
nix_sha256=52fab207b4ce4d098a12d85357d0353e972c492bab0aa9e08e1600363e76fefb
@@ -49,17 +50,6 @@ main() {
}
-cac_listservers() {
- if test -z "${cac_via-}"; then
- curl -fsS \
- "https://panel.cloudatcost.com/api/v1/listservers.php?key=$cac_key&login=$cac_login"
- else
- ssh -q $cac_via -t curl -fsS \
- "https://panel.cloudatcost.com/api/v1/listservers.php?key=$cac_key\\&login=$cac_login"
- fi
-}
-
-
infest_centos7_64bit() {
config=$1
address=$(echo $config | jq -r .ip)
diff --git a/lib/cac.sh b/lib/cac.sh
new file mode 100644
index 00000000..209bb4d6
--- /dev/null
+++ b/lib/cac.sh
@@ -0,0 +1,9 @@
+cac_listservers() {
+ if test -z "${cac_via-}"; then
+ curl -fsS \
+ "https://panel.cloudatcost.com/api/v1/listservers.php?key=$cac_key\&login=$cac_login"
+ else
+ ssh -q $cac_via -t curl -fsS \
+ "https://panel.cloudatcost.com/api/v1/listservers.php?key=$cac_key\\&login=$cac_login"
+ fi
+}