mirror of
https://git.launchpad.net/livecd-rootfs
synced 2025-07-06 22:41:30 +00:00
16 lines
312 B
Bash
16 lines
312 B
Bash
#!/bin/sh
|
|
|
|
set -ex
|
|
|
|
echo "I: Creating warning to use snappy when apt-get is used"
|
|
|
|
PREFIX=binary/boot/filesystem.dir
|
|
|
|
mkdir -p $PREFIX/usr/local/bin
|
|
cat >$PREFIX/usr/local/bin/apt-get <<EOF
|
|
#!/bin/sh
|
|
cat <<EOF
|
|
echo "Ubuntu Core does not use APT, see 'snappy --help'!"
|
|
EOF
|
|
chmod 755 $PREFIX/usr/local/bin/apt-get
|