Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
tails
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
947
Issues
947
List
Boards
Labels
Service Desk
Milestones
Merge Requests
12
Merge Requests
12
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
tails
tails
Commits
1db7d445
Commit
1db7d445
authored
Dec 23, 2013
by
Tails developers
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't try to use APT to remove packages in the Unsafe Browser script (Closes:
#6531
).
parent
255c0762
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
config/chroot_local-includes/usr/local/sbin/unsafe-browser
config/chroot_local-includes/usr/local/sbin/unsafe-browser
+4
-2
No files found.
config/chroot_local-includes/usr/local/sbin/unsafe-browser
View file @
1db7d445
...
...
@@ -156,8 +156,10 @@ configure_chroot () {
# Remove all Iceweasel addons: some adds proxying, which we don't
# want; some may change the fingerprint compared to a standard
# Iceweasel install.
chroot
${
CHROOT
}
apt-get remove
--yes
xul-ext-
*
# Iceweasel install. Note: We cannot use apt-get since we don't ship its
# lists (#6531). Too bad, APT supports globbing, while dkpg does not.
dpkg
-l
'xul-ext-*'
| /bin/grep
'^ii'
|
awk
'{print $2}'
|
\
xargs
chroot
${
CHROOT
}
dpkg
--remove
# Disable proxying in the chroot
sed
-r
-i
'/^(user_|)pref\("network\.proxy\..*",/d'
\
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment