File: openstack-cluster-installer-openstack-ci.postinst

package info (click to toggle)
openstack-cluster-installer 43.0.19
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,540 kB
  • sloc: php: 19,150; sh: 18,091; ruby: 75; makefile: 31; xml: 8
file content (13 lines) | stat: -rw-r--r-- 193 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

if [ "${1}" = "configure" ] || [ "${1}" = "reconfigure" ]; then
	if ! [ -e /etc/oci-poc/id_rsa ] ; then
		ssh-keygen -P '' -f /etc/oci-poc/id_rsa
	fi
fi

#DEBHELPER#

exit 0