We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 121576b commit 36dff88Copy full SHA for 36dff88
1 file changed
coriolisclient/constants.py
@@ -56,12 +56,11 @@
56
PHASE_OSMORPHING_PRE_OS_MOUNT = "osmorphing_pre_os_mount"
57
# Scripts that are executed after the OS partition is mounted (the default).
58
PHASE_OSMORPHING_POST_OS_MOUNT = "osmorphing_post_os_mount"
59
-# We may eventually add "PHASE_REPLICA_FIRST_BOOT" for convenience, although
60
-# the users can already achieve this by using os-morphing scripts to schedule
61
-# scripts that will be executed at the next boot. This may require import
62
-# provider support.
+# Scripts that are executed when the replica VM starts for the first time.
+PHASE_REPLICA_FIRST_BOOT = "replica_first_boot"
63
64
USER_SCRIPT_PHASES = [
65
PHASE_OSMORPHING_PRE_OS_MOUNT,
66
PHASE_OSMORPHING_POST_OS_MOUNT,
+ PHASE_REPLICA_FIRST_BOOT,
67
]
0 commit comments