forked from josch/mmdebstrap
11 lines
129 B
Bash
11 lines
129 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
set -exu
|
||
|
|
||
|
rootdir="$1"
|
||
|
|
||
|
rm "$rootdir/usr/bin/eatmydata"
|
||
|
mv "$rootdir/usr/bin/dpkg.orig" "$rootdir/usr/bin/dpkg"
|
||
|
|
||
|
sync
|