- fix message

* live-build/ubuntu-core/hooks/14-set-motd.chroot:
  - update motd
This commit is contained in:
Michael Vogt 2014-12-10 12:56:48 +01:00
parent 6e90ef925e
commit 52f8a0544f
3 changed files with 9 additions and 5 deletions

3
debian/changelog vendored
View File

@ -8,6 +8,9 @@ livecd-rootfs (2.274) UNRELEASED; urgency=medium
* live-build/ubuntu-core/hooks/400-create-apt-get-warning.binary:
- fix incorrect "echo"
- add missing wrappers for apt, apt-cache
- fix message
* live-build/ubuntu-core/hooks/14-set-motd.chroot:
- update motd
[ James Hunt ]
* live-build/ubuntu-core/hooks/10-remove-documentation.binary:

View File

@ -1,11 +1,12 @@
#!/bin/sh
cat >/etc/motd<<EOF
Welcome to Ubuntu Core (development branch)
Welcome to the Ubuntu Core rolling development release.
* See https://ubuntu.com/snappy
Surprise! It's a brave new Ubuntu world here in the snappy development
channel. Ubuntu Core does not use APT, see 'snappy --help' for ideas
on how to make the most of this transactional system.
It's a brave new world here in snappy Ubuntu Core! This machine
does not use apt-get or deb packages. Please see 'snappy --help'
for app installation and transactional updates.
EOF

View File

@ -10,7 +10,7 @@ mkdir -p $PREFIX/usr/local/bin
cat >$PREFIX/usr/local/bin/no-apt <<EOF
#!/bin/sh
cat <<EOF
Ubuntu Core does not use APT, see 'snappy --help'!
Ubuntu Core does not use apt-get, see 'snappy --help'!
EOF
chmod 755 $PREFIX/usr/local/bin/no-apt