Commit fe976015 authored by Łukasz Nowak's avatar Łukasz Nowak

Put out PKI from USB key.

Still computer key and certificate is there.
parent 25c297c1
...@@ -154,17 +154,9 @@ def run(config): ...@@ -154,17 +154,9 @@ def run(config):
if not dry_run: if not dry_run:
os.mkdir(slap_configuration_directory, 0711) os.mkdir(slap_configuration_directory, 0711)
slap_key_repository = os.path.normpath('/'.join([mount_dir_path, certificate_repository_path = os.path.join('/opt/slapos/pki')
config.slapos_configuration, key_file = os.path.join(config.slapos_configuration, 'computer.key')
'pki'])) cert_file = os.path.join(config.slapos_configuration, 'computer.crt')
if not os.path.exists(slap_key_repository):
print "Creating directory: %s" % slap_key_repository
if not dry_run:
os.mkdir(slap_key_repository, 0711)
certificate_repository_path = os.path.join(config.slapos_configuration,
'pki')
key_file = os.path.join(certificate_repository_path, 'computer.key')
cert_file = os.path.join(certificate_repository_path, 'computer.crt')
key_file_dest = os.path.normpath('/'.join([mount_dir_path, key_file_dest = os.path.normpath('/'.join([mount_dir_path,
key_file])) key_file]))
cert_file_dest = os.path.normpath('/'.join([mount_dir_path, cert_file_dest = os.path.normpath('/'.join([mount_dir_path,
......
...@@ -63,6 +63,10 @@ if [ ! -f /opt/slapos/bin/slapformat ] ; then ...@@ -63,6 +63,10 @@ if [ ! -f /opt/slapos/bin/slapformat ] ; then
done done
fi fi
# Create PKI repository
repo=`egrep ^certificate_repository_path slapos.cfg.in | sed 's/^certificate_repository_path.*= *//'`
mkdir -v -p -m 0755 $repo
# software detected, ready to run # software detected, ready to run
# Set up cron # Set up cron
echo """# BEWARE: This file will be automatically regenerated on each boot echo """# BEWARE: This file will be automatically regenerated on each boot
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment