Files
scylladb/dist/common/scripts/scylla_bootparam_setup
Takuya ASADA c2ccdac297 move cloud related code from scylla repository to scylla-machine-image
Currently, cloud related code have cross-dependencies between
scylla and scylla-machine-image.
It is not good way to implement, and single change can break both
package.

To resolve the issue, we need to move all cloud related code to
scylla-machine-image, and remove them from scylla repository.

Change list:
 - move cloud part of scylla_util.py to scylla-machine-image
 - move cloud part of scylla_io_setup to scylla-machine-image
 - move scylla_ec2_check to scylla-machine-image
 - move cloud part of scylla_bootparam_setup to scylla-machine-image

Closes #9957
2022-02-01 11:26:59 +02:00

22 lines
507 B
Python
Executable File

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
#
# Copyright 2018-present ScyllaDB
#
#
# SPDX-License-Identifier: AGPL-3.0-or-later
import os
import sys
import argparse
# keep this script just for compatibility.
if __name__ == '__main__':
parser = argparse.ArgumentParser(description='Optimize boot parameter settings for Scylla.')
parser.add_argument('--ami', action='store_true', default=False,
help='setup AMI instance')
args = parser.parse_args()
sys.exit(0)