We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2250401 commit c458079Copy full SHA for c458079
autostart/crew-sudo.conf
@@ -1,6 +1,6 @@
1
# crew-sudo.conf: Upstart init configuration file for crew-sudo
2
description "The crew-sudo daemon"
3
-author "The Chromebrew authors"
+author "The Chromebrew Authors"
4
5
# autostart crew-sudo on early boot
6
start on started boot-services
crosh/50-crew-sudo.sh
@@ -0,0 +1,13 @@
+#!/bin/dash
+# 50-crew-sudo.sh: Add a crosh command called "normalshell" which
+# opens a shell without landlock/"no new privileges" restrictions
+
+USAGE_normalshell=''
7
+HELP_normalshell='
8
+ Open a command line shell without landlock/"no new privileges" restrictions.
9
+'
10
11
+cmd_normalshell() (
12
+ exec crew-sudo --client /bin/bash -l
13
+)
0 commit comments