mirror of
git://soft.sys114.com/odroid-stamper
synced 2025-12-19 00:18:42 +09:00
13 lines
406 B
Bash
Executable File
13 lines
406 B
Bash
Executable File
#!/bin/sh
|
||
|
||
# During boot the operating system’s init system will check for the existence
|
||
# of this file. If it exists, cloud-init will not be started.
|
||
touch /etc/cloud/cloud-init.disabled
|
||
|
||
# cloud-initramfs-growroot is going to run growpart on the root filesystem
|
||
# during the initramfs unless one of the following files exists on the root
|
||
# filesystem:
|
||
touch /etc/growroot-disabled
|
||
|
||
update-initramfs -u
|