File tree Expand file tree Collapse file tree 2 files changed +1
-14
lines changed Expand file tree Collapse file tree 2 files changed +1
-14
lines changed Original file line number Diff line number Diff line change 19
19
20
20
import click
21
21
22
- from node_cli .core .node import init_sync , resize_filesystem , update_sync
22
+ from node_cli .core .node import init_sync , update_sync
23
23
from node_cli .utils .helper import abort_if_false , safe_load_texts , streamed_cmd
24
24
25
25
@@ -51,9 +51,3 @@ def _init_sync(env_file):
51
51
@streamed_cmd
52
52
def _update_sync (env_file ):
53
53
update_sync (env_file )
54
-
55
-
56
- @sync_node .command (help = 'Update sync node from .env file' )
57
- @click .argument ('block_device' )
58
- def extend_fs (block_device ):
59
- resize_filesystem (block_device )
Original file line number Diff line number Diff line change 58
58
init_sync_op ,
59
59
update_sync_op
60
60
)
61
- from node_cli .operations .volume import ensure_btrfs_for_all_space
62
61
from node_cli .utils .print_formatters import (
63
62
print_failed_requirements_checks , print_node_cmd_error , print_node_info
64
63
)
@@ -458,9 +457,3 @@ def configure_firewall_rules() -> None:
458
457
print ('Configuring firewall ...' )
459
458
configure_iptables ()
460
459
print ('Done' )
461
-
462
-
463
- def resize_filesystem (block_device : str ) -> None :
464
- print ('Resizing fs' )
465
- ensure_btrfs_for_all_space (block_device )
466
- print ('Done' )
You can’t perform that action at this time.
0 commit comments