Commit f1b623c2 authored by Marco Mariani's avatar Marco Mariani

not one_disk -> second_disk

parent 901875e8
......@@ -303,7 +303,7 @@ def slapserver(config):
open(os.path.join(config.slapos_configuration, 'SlapContainer-needed'), 'w')
# Adding slapos_firstboot in case of MultiDisk usage
if not config.one_disk:
if config.second_disk:
for script in ['slapos_firstboot']:
path = os.path.join(mount_dir_path, 'etc', 'init.d', script)
print "Creating %r" % path
......@@ -451,7 +451,7 @@ class Config:
print "Starting from scratch..."
return False
self.one_disk = not get_yes_no("Do you want to use SlapOS with a second disk?", True)
self.second_disk = get_yes_no("Do you want to use SlapOS with a second disk?", True)
self.need_bridge = get_yes_no("Do you want the setup to allow virtual machines inside this node?", True)
self.force_vpn = get_yes_no("Do you want to use vpn to provide ipv6?", True)
......@@ -477,7 +477,7 @@ class Config:
print "Ipv6 over VPN: %s" % self.force_vpn
print "Remote ssh access: %s" % self.need_ssh
print "Prepared to use lxc: %s" % self.force_slapcontainer
print "Use a second disk: %s" % (not self.one_disk)
print "Use a second disk: %s" % self.second_disk
def prepare_from_scratch(config):
......@@ -551,7 +551,7 @@ def prepare_from_scratch(config):
slapserver(config)
if not config.one_disk:
if config.second_disk:
_call(['/etc/init.d/slapos_firstboot'])
_call(['zypper', '--gpg-auto-import-keys', 'install', '-fy', 'slapos.node'])
_call(['systemctl', 'stop', 'slapos-node.service'])
......
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