summaryrefslogtreecommitdiff
path: root/contrib/cirrus/packer/make-user-data.sh
diff options
context:
space:
mode:
Diffstat (limited to 'contrib/cirrus/packer/make-user-data.sh')
-rw-r--r--contrib/cirrus/packer/make-user-data.sh20
1 files changed, 0 insertions, 20 deletions
diff --git a/contrib/cirrus/packer/make-user-data.sh b/contrib/cirrus/packer/make-user-data.sh
deleted file mode 100644
index 676a50f5c..000000000
--- a/contrib/cirrus/packer/make-user-data.sh
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env bash
-
-# This script is utilized by Makefile, it's not intended to be run by humans
-
-cat <<EOF > user-data
-#cloud-config
-timezone: US/Eastern
-growpart:
- mode: auto
-disable_root: false
-ssh_pwauth: True
-ssh_import_id: [root]
-ssh_authorized_keys:
- - $(cat cidata.ssh.pub)
-users:
- - name: root
- primary-group: root
- homedir: /root
- system: true
-EOF