@@ -85,9 +85,7 @@ pub(crate) struct UpgradeOpts {
85
85
///
86
86
/// 'required' will fail if soft reboot is not available.
87
87
/// 'auto' will use soft reboot if available, otherwise fall back to regular reboot.
88
- // Hidden because the ostree side needs further stabilization.
89
- // See: https://github.com/ostreedev/ostree/issues/3503
90
- #[ clap( long = "soft-reboot" , conflicts_with = "check" , hide = true ) ]
88
+ #[ clap( long = "soft-reboot" , conflicts_with = "check" ) ]
91
89
pub ( crate ) soft_reboot : Option < SoftRebootMode > ,
92
90
93
91
#[ clap( flatten) ]
@@ -113,9 +111,7 @@ pub(crate) struct SwitchOpts {
113
111
///
114
112
/// 'required' will fail if soft reboot is not available.
115
113
/// 'auto' will use soft reboot if available, otherwise fall back to regular reboot.
116
- // Hidden because the ostree side needs further stabilization.
117
- // See: https://github.com/ostreedev/ostree/issues/3503
118
- #[ clap( long = "soft-reboot" , hide = true ) ]
114
+ #[ clap( long = "soft-reboot" ) ]
119
115
pub ( crate ) soft_reboot : Option < SoftRebootMode > ,
120
116
121
117
/// The transport; e.g. oci, oci-archive, containers-storage. Defaults to `registry`.
@@ -166,9 +162,7 @@ pub(crate) struct RollbackOpts {
166
162
///
167
163
/// 'required' will fail if soft reboot is not available.
168
164
/// 'auto' will use soft reboot if available, otherwise fall back to regular reboot.
169
- // Hidden because the ostree side needs further stabilization.
170
- // See: https://github.com/ostreedev/ostree/issues/3503
171
- #[ clap( long = "soft-reboot" , hide = true ) ]
165
+ #[ clap( long = "soft-reboot" ) ]
172
166
pub ( crate ) soft_reboot : Option < SoftRebootMode > ,
173
167
}
174
168
0 commit comments