@@ -37,7 +37,7 @@ pub enum Commands {
3737#[ clap( group(
3838 ArgGroup :: new( "operations" )
3939 . multiple( true )
40- . args( & [ "mainline" , " pacstall", "snapdpurge" ] ) ,
40+ . args( & [ "pacstall" , "snapdpurge" ] ) ,
4141) ) ]
4242pub struct EnableCommand {
4343 /// Run interactively
@@ -50,14 +50,6 @@ pub struct EnableCommand {
5050 #[ clap( short, long) ]
5151 pub interactive : bool ,
5252
53- /// Enable the latest Linux mainline kernel
54- ///
55- /// The latest kernel can be enabled via the rhino-config enable command.
56- /// This will download, install and keep the latest Linux kernel updated
57- /// via the Ubuntu mainline repositories
58- #[ clap( short, long) ]
59- pub mainline : bool ,
60-
6153 /// Enable Pacstall, an additional AUR-like package manager for Ubuntu
6254 ///
6355 /// Pacstall can be enabled via the rhino-config enable command. This will
@@ -81,17 +73,9 @@ pub struct EnableCommand {
8173 ArgGroup :: new( "operations" )
8274 . required( true )
8375 . multiple( true )
84- . args( & [ "mainline" , " pacstall", "snapdpurge" ] ) ,
76+ . args( & [ "pacstall" , "snapdpurge" ] ) ,
8577 ) ) ]
8678pub struct DisableCommand {
87- /// Disable the latest Linux mainline kernel
88- ///
89- /// This disables the mainline kernel from being continually updated. If it
90- /// was enabled then it will still be installed on your system, however you
91- /// can revert to the kernel provided by Ubuntu in your grub menu
92- #[ clap( short, long) ]
93- pub mainline : bool ,
94-
9579 /// Disable Pacstall, an additional AUR-like package manager for Ubuntu
9680 ///
9781 /// This disables and uninstalls Pacstall from your system. Pacstall will
0 commit comments