mirror of
https://github.com/kevingruesser/bootstrap-vz.git
synced 2025-08-24 07:26:29 +00:00
31 lines
1.3 KiB
Python
31 lines
1.3 KiB
Python
from base import Task
|
|
from common import phases
|
|
import os
|
|
|
|
|
|
class OpenNebulaContext(Task):
|
|
description = 'Setup OpenNebula init context'
|
|
phase = phases.system_modification
|
|
|
|
def run(self, info):
|
|
import stat
|
|
rwxr_xr_x = (stat.S_IRUSR | stat.S_IWUSR | stat.S_IXUSR |
|
|
stat.S_IRGRP | stat.S_IXGRP |
|
|
stat.S_IROTH | stat.S_IXOTH)
|
|
|
|
from shutil import copy
|
|
script_src = os.path.normpath(os.path.join(os.path.dirname(__file__), '../assets/one-context_3.8.1.deb'))
|
|
script_dst = os.path.join(info.root, 'tmp/one-context_3.8.1.deb')
|
|
copy(script_src, script_dst)
|
|
os.chmod(script_dst, rwxr_xr_x)
|
|
|
|
from common.tools import log_check_call
|
|
log_check_call(['/usr/sbin/chroot', info.root, 'dpkg', '-i', '/tmp/one-context_3.8.1.deb'])
|
|
|
|
script_src = os.path.normpath(os.path.join(os.path.dirname(__file__), '../assets/one-pubkey.sh'))
|
|
script_dst = os.path.join(info.root, 'etc/one-context.d/one-pubkey.sh')
|
|
copy(script_src, script_dst)
|
|
script_src = os.path.normpath(os.path.join(os.path.dirname(__file__), '../assets/one-ec2.sh'))
|
|
script_dst = os.path.join(info.root, 'etc/one-context.d/one-ec2.sh')
|
|
copy(script_src, script_dst)
|
|
|