parent
d2f32337f0
commit
2e67ccecd7
@ -0,0 +1,6 @@
|
||||
casper-trinity (4:3.5.13-1ubuntu0+ax0) precise; urgency=low
|
||||
|
||||
* Initial version
|
||||
|
||||
-- Slávek Banko <slavek.banko@axis.cz> Mon, 05 Dec 2012 22:05:23 +0100
|
||||
|
@ -0,0 +1 @@
|
||||
7
|
@ -0,0 +1,14 @@
|
||||
Source: casper-trinity
|
||||
Section: misc
|
||||
Priority: optional
|
||||
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||
Build-Depends: cdbs, debhelper (>= 7.0.50~)
|
||||
Standards-Version: 3.8.4
|
||||
|
||||
Package: casper-trinity
|
||||
Architecture: all
|
||||
Section: misc
|
||||
Priority: extra
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, casper
|
||||
Tag: admin::boot, admin::filesystem, implemented-in::shell, protocol::smb, role::plugin, scope::utility, special::completely-tagged, works-with-format::iso9660
|
||||
Description: Casper addon scripts for Trinity
|
@ -0,0 +1,23 @@
|
||||
Author: Slávek Banko <slavek.banko@axis.cz>
|
||||
|
||||
License:
|
||||
|
||||
This package is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This package is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this package; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License can be found in `/usr/share/common-licenses/GPL'.
|
||||
|
||||
The Debian packaging is (C) 2010, Slávek Banko <slavek.banko@axis.cz> and
|
||||
is licensed under the GPL, see above.
|
@ -0,0 +1 @@
|
||||
scripts usr/share/initramfs-tools
|
@ -0,0 +1,6 @@
|
||||
#! /usr/bin/make -f
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
|
||||
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||
&& echo xz || echo bzip2)
|
@ -0,0 +1 @@
|
||||
3.0 (native)
|
@ -0,0 +1,3 @@
|
||||
# Use xz instead of gzip
|
||||
compression = "xz"
|
||||
compression-level = 9
|
@ -0,0 +1,41 @@
|
||||
#!/bin/sh
|
||||
|
||||
PREREQ=""
|
||||
DESCRIPTION="Setting up automatic login (Trinity)..."
|
||||
|
||||
prereqs()
|
||||
{
|
||||
echo "$PREREQ"
|
||||
}
|
||||
|
||||
case $1 in
|
||||
# get pre-requisites
|
||||
prereqs)
|
||||
prereqs
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
. /scripts/casper-functions
|
||||
|
||||
log_begin_msg "$DESCRIPTION"
|
||||
|
||||
if [ -f /root/etc/trinity/kdm/kdmrc ]; then
|
||||
# Configure KDM-Trinity autologin
|
||||
sed -i -r \
|
||||
-e "s/^#?AutoLoginEnable=.*\$/AutoLoginEnable=true/" \
|
||||
-e "s/^#?AutoLoginUser=.*\$/AutoLoginUser=$USERNAME/" \
|
||||
-e "s/^#?AutoLoginAgain=.*\$/AutoLoginAgain=true/" \
|
||||
/root/etc/trinity/kdm/kdmrc
|
||||
fi
|
||||
|
||||
if [ -f /root/etc/trinity/tdm/tdmrc ]; then
|
||||
# Configure TDM-Trinity autologin
|
||||
sed -i -r \
|
||||
-e "s/^#?AutoLoginEnable=.*\$/AutoLoginEnable=true/" \
|
||||
-e "s/^#?AutoLoginUser=.*\$/AutoLoginUser=$USERNAME/" \
|
||||
-e "s/^#?AutoLoginAgain=.*\$/AutoLoginAgain=true/" \
|
||||
/root/etc/trinity/tdm/tdmrc
|
||||
fi
|
||||
|
||||
log_end_msg
|
@ -0,0 +1,33 @@
|
||||
#!/bin/sh
|
||||
|
||||
PREREQ=""
|
||||
DESCRIPTION="Adding live session user (Trinity)..."
|
||||
|
||||
prereqs()
|
||||
{
|
||||
echo "$PREREQ"
|
||||
}
|
||||
|
||||
case $1 in
|
||||
# get pre-requisites
|
||||
prereqs)
|
||||
prereqs
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
. /scripts/casper-functions
|
||||
|
||||
log_begin_msg "$DESCRIPTION"
|
||||
|
||||
#Trinity
|
||||
if [ -d "/root/etc/trinity" ]; then
|
||||
if [ -f "/root/usr/share/applications/ubiquity-gtkui.desktop" ]; then
|
||||
sed -i 's/\(OnlyShowIn=.*\)/\1KDE;TDE;/' "/root/usr/share/applications/ubiquity-gtkui.desktop"
|
||||
fi
|
||||
if [ -f "/root/home/$USERNAME/Desktop/ubiquity-gtkui.desktop" ]; then
|
||||
sed -i 's/\(OnlyShowIn=.*\)/\1KDE;TDE;/' "/root/home/$USERNAME/Desktop/ubiquity-gtkui.desktop"
|
||||
fi
|
||||
fi
|
||||
|
||||
log_end_msg
|
@ -0,0 +1,6 @@
|
||||
trinity-livecd (4:3.5.13-1ubuntu0+ax0) precise; urgency=low
|
||||
|
||||
* Initial version
|
||||
|
||||
-- Slávek Banko <slavek.banko@axis.cz> Wed, 12 Dec 2012 19:49:19 +0100
|
||||
|
@ -0,0 +1 @@
|
||||
5
|
@ -0,0 +1,23 @@
|
||||
Source: trinity-livecd
|
||||
Section: tde
|
||||
Priority: optional
|
||||
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||
Standards-Version: 3.8.3
|
||||
Build-Depends: cdbs, debhelper (>= 5)
|
||||
|
||||
Package: trinity-livecd
|
||||
Architecture: all
|
||||
Depends: akregator-trinity, amarok-trinity, ark-trinity, basket-trinity, eyesapplet-trinity, juk-trinity, k3b-trinity, kaffeine-trinity, karm-trinity, kbstate-trinity, kcalc-trinity, kcharselect-trinity, tdeaddons-kfile-plugins-trinity, tdeadmin-kfile-plugins-trinity, tdegames-trinity, tdegraphics-kfile-plugins-trinity, tdemultimedia-kfile-plugins-trinity, tdenetwork-kfile-plugins-trinity, tdepim-kfile-plugins-trinity, tdesdk-kfile-plugins-trinity, kdessh-trinity, tdesudo-trinity, kdewallpapers-trinity, kdf-trinity, kedit-trinity, kfloppy-trinity, kget-trinity, kgpg-trinity, kicker-applets-trinity, kleopatra-trinity, kmailcvt-trinity, kmix-trinity, kmoon-trinity, kompare-trinity, kontact-trinity, konversation-trinity, kopete-trinity, korn-trinity, kpdf-trinity, kpowersave-nohal-trinity | kpowersave-trinity, kppp-trinity, krdc-trinity, kscreensaver-trinity, ksmserver-trinity, ksnapshot-trinity, kteatime-trinity, ktnef-trinity, ktorrent-trinity, kuickshow-trinity, kwalletmanager-trinity, kweather-trinity, kworldclock-trinity, libarts1-akode-trinity, sudo-trinity, superkaramba-trinity, trinity-keyring
|
||||
Recommends:
|
||||
kpresenter-trinity, kspread-trinity, kword-trinity,
|
||||
tde-i18n-cs-trinity, tde-i18n-de-trinity, tde-i18n-es-trinity, tde-i18n-fr-trinity, tde-i18n-it-trinity, tde-i18n-ru-trinity,
|
||||
koffice-i18n-cs-trinity, koffice-i18n-de-trinity, koffice-i18n-es-trinity, koffice-i18n-fr-trinity, koffice-i18n-it-trinity, koffice-i18n-ru-trinity,
|
||||
k3b-i18n-trinity,
|
||||
gtk-qt-engine-trinity, gtk3-tqt-engine-trinity, tdenetworkmanager-trinity, foomatic-db, cups, ubuntu-minimal
|
||||
Suggests: casper-trinity, ubiquity-trinity
|
||||
Description: Essential selection for Trinity LiveCD
|
||||
This package depends on selected packages in the Trinity Desktop Environment
|
||||
.
|
||||
It is safe to remove this package if some of the desktop system packages are
|
||||
not desired.
|
||||
|
@ -0,0 +1,14 @@
|
||||
Copyright 2004, Canonical Ltd.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free Software
|
||||
Foundation; either version 2, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License with your
|
||||
system, in /usr/share/common-licenses/GPL-2. If not, write to the Free
|
||||
Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
02111-1307, USA.
|
@ -0,0 +1,6 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
|
||||
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||
&& echo xz || echo bzip2)
|
@ -0,0 +1 @@
|
||||
3.0 (native)
|
@ -0,0 +1,3 @@
|
||||
# Use xz instead of gzip
|
||||
compression = "xz"
|
||||
compression-level = 9
|
@ -0,0 +1,6 @@
|
||||
ubiquity-trinity (4:3.5.13-1ubuntu0+ax0) precise; urgency=low
|
||||
|
||||
* Initial version
|
||||
|
||||
-- Slávek Banko <slavek.banko@axis.cz> Mon, 19 Dec 2012 18:54:50 +0100
|
||||
|
@ -0,0 +1 @@
|
||||
7
|
@ -0,0 +1,11 @@
|
||||
Source: ubiquity-trinity
|
||||
Section: admin
|
||||
Priority: optional
|
||||
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||
Build-Depends: cdbs, debhelper (>= 7.0.50~)
|
||||
Standards-Version: 3.8.4
|
||||
|
||||
Package: ubiquity-trinity
|
||||
Architecture: all
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, ubiquity-frontend-gtk | ubiquity
|
||||
Description: Ubiquity addon scripts for Trinity
|
@ -0,0 +1,23 @@
|
||||
Author: Slávek Banko <slavek.banko@axis.cz>
|
||||
|
||||
License:
|
||||
|
||||
This package is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This package is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this package; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License can be found in `/usr/share/common-licenses/GPL'.
|
||||
|
||||
The Debian packaging is (C) 2010, Slávek Banko <slavek.banko@axis.cz> and
|
||||
is licensed under the GPL, see above.
|
@ -0,0 +1 @@
|
||||
ubiquity-hooks/* usr/lib/ubiquity/target-config
|
@ -0,0 +1,6 @@
|
||||
#! /usr/bin/make -f
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
|
||||
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||
&& echo xz || echo bzip2)
|
@ -0,0 +1 @@
|
||||
3.0 (native)
|
@ -0,0 +1,3 @@
|
||||
# Use xz instead of gzip
|
||||
compression = "xz"
|
||||
compression-level = 9
|
@ -0,0 +1,52 @@
|
||||
#! /bin/sh
|
||||
set -e
|
||||
|
||||
#-- configure autologin
|
||||
. /usr/share/debconf/confmodule
|
||||
|
||||
export LANG=C # avoid locale errors from perl
|
||||
ROOT=/target
|
||||
chroot=chroot
|
||||
log='log-output -t trinity-livecd'
|
||||
|
||||
db_get passwd/username
|
||||
USER="$RET"
|
||||
db_get passwd/auto-login
|
||||
if [ -n "$USER" ] && [ "$RET" = true ]; then
|
||||
if $chroot $ROOT [ -f /etc/trinity/kdm/kdmrc ]; then
|
||||
# Configure KDM autologin
|
||||
$log $chroot $ROOT sed -i$BACKUP -r \
|
||||
-e "s/^#?AutoLoginEnable=.*\$/AutoLoginEnable=true/" \
|
||||
-e "s/^#?AutoLoginUser=.*\$/AutoLoginUser=$USER/" \
|
||||
-e "s/^#?AutoLoginAgain=.*\$/AutoLoginAgain=true/" \
|
||||
/etc/trinity/kdm/kdmrc
|
||||
fi
|
||||
|
||||
if $chroot $ROOT [ -f /etc/trinity/tdm/tdmrc ]; then
|
||||
# Configure TDM autologin
|
||||
$log $chroot $ROOT sed -i$BACKUP -r \
|
||||
-e "s/^#?AutoLoginEnable=.*\$/AutoLoginEnable=true/" \
|
||||
-e "s/^#?AutoLoginUser=.*\$/AutoLoginUser=$USER/" \
|
||||
-e "s/^#?AutoLoginAgain=.*\$/AutoLoginAgain=true/" \
|
||||
/etc/trinity/tdm/tdmrc
|
||||
fi
|
||||
fi
|
||||
|
||||
#-- cleanup additional packages
|
||||
packages=""
|
||||
if [ -f "$ROOT/var/lib/dpkg/info/casper-trinity.list" ]; then
|
||||
packages="$packages casper-trinity"
|
||||
fi
|
||||
if [ -f "$ROOT/var/lib/dpkg/info/ubiquity-trinity.list" ]; then
|
||||
packages="$packages ubiquity-trinity"
|
||||
fi
|
||||
if [ -n "$packages" ]; then
|
||||
if [ -f "$ROOT/usr/bin/apt-get" ]; then
|
||||
$chroot $ROOT apt-get -y purge $packages
|
||||
$chroot $ROOT apt-get -y --purge autoremove
|
||||
else
|
||||
$chroot $ROOT dpkg -P $packages
|
||||
fi
|
||||
fi
|
||||
|
||||
exit 0
|
@ -0,0 +1,6 @@
|
||||
casper-trinity (4:3.5.13-1ubuntu0+ax0) precise; urgency=low
|
||||
|
||||
* Initial version
|
||||
|
||||
-- Slávek Banko <slavek.banko@axis.cz> Mon, 05 Dec 2012 22:05:23 +0100
|
||||
|
@ -0,0 +1 @@
|
||||
7
|
@ -0,0 +1,14 @@
|
||||
Source: casper-trinity
|
||||
Section: misc
|
||||
Priority: optional
|
||||
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||
Build-Depends: cdbs, debhelper (>= 7.0.50~)
|
||||
Standards-Version: 3.8.4
|
||||
|
||||
Package: casper-trinity
|
||||
Architecture: all
|
||||
Section: misc
|
||||
Priority: extra
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, casper
|
||||
Tag: admin::boot, admin::filesystem, implemented-in::shell, protocol::smb, role::plugin, scope::utility, special::completely-tagged, works-with-format::iso9660
|
||||
Description: Casper addon scripts for Trinity
|
@ -0,0 +1,23 @@
|
||||
Author: Slávek Banko <slavek.banko@axis.cz>
|
||||
|
||||
License:
|
||||
|
||||
This package is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This package is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this package; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License can be found in `/usr/share/common-licenses/GPL'.
|
||||
|
||||
The Debian packaging is (C) 2010, Slávek Banko <slavek.banko@axis.cz> and
|
||||
is licensed under the GPL, see above.
|
@ -0,0 +1 @@
|
||||
scripts usr/share/initramfs-tools
|
@ -0,0 +1,6 @@
|
||||
#! /usr/bin/make -f
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
|
||||
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||
&& echo xz || echo bzip2)
|
@ -0,0 +1 @@
|
||||
3.0 (native)
|
@ -0,0 +1,3 @@
|
||||
# Use xz instead of gzip
|
||||
compression = "xz"
|
||||
compression-level = 9
|
@ -0,0 +1,41 @@
|
||||
#!/bin/sh
|
||||
|
||||
PREREQ=""
|
||||
DESCRIPTION="Setting up automatic login (Trinity)..."
|
||||
|
||||
prereqs()
|
||||
{
|
||||
echo "$PREREQ"
|
||||
}
|
||||
|
||||
case $1 in
|
||||
# get pre-requisites
|
||||
prereqs)
|
||||
prereqs
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
. /scripts/casper-functions
|
||||
|
||||
log_begin_msg "$DESCRIPTION"
|
||||
|
||||
if [ -f /root/etc/trinity/kdm/kdmrc ]; then
|
||||
# Configure KDM-Trinity autologin
|
||||
sed -i -r \
|
||||
-e "s/^#?AutoLoginEnable=.*\$/AutoLoginEnable=true/" \
|
||||
-e "s/^#?AutoLoginUser=.*\$/AutoLoginUser=$USERNAME/" \
|
||||
-e "s/^#?AutoLoginAgain=.*\$/AutoLoginAgain=true/" \
|
||||
/root/etc/trinity/kdm/kdmrc
|
||||
fi
|
||||
|
||||
if [ -f /root/etc/trinity/tdm/tdmrc ]; then
|
||||
# Configure TDM-Trinity autologin
|
||||
sed -i -r \
|
||||
-e "s/^#?AutoLoginEnable=.*\$/AutoLoginEnable=true/" \
|
||||
-e "s/^#?AutoLoginUser=.*\$/AutoLoginUser=$USERNAME/" \
|
||||
-e "s/^#?AutoLoginAgain=.*\$/AutoLoginAgain=true/" \
|
||||
/root/etc/trinity/tdm/tdmrc
|
||||
fi
|
||||
|
||||
log_end_msg
|
@ -0,0 +1,33 @@
|
||||
#!/bin/sh
|
||||
|
||||
PREREQ=""
|
||||
DESCRIPTION="Adding live session user (Trinity)..."
|
||||
|
||||
prereqs()
|
||||
{
|
||||
echo "$PREREQ"
|
||||
}
|
||||
|
||||
case $1 in
|
||||
# get pre-requisites
|
||||
prereqs)
|
||||
prereqs
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
. /scripts/casper-functions
|
||||
|
||||
log_begin_msg "$DESCRIPTION"
|
||||
|
||||
#Trinity
|
||||
if [ -d "/root/etc/trinity" ]; then
|
||||
if [ -f "/root/usr/share/applications/ubiquity-gtkui.desktop" ]; then
|
||||
sed -i 's/\(OnlyShowIn=.*\)/\1KDE;TDE;/' "/root/usr/share/applications/ubiquity-gtkui.desktop"
|
||||
fi
|
||||
if [ -f "/root/home/$USERNAME/Desktop/ubiquity-gtkui.desktop" ]; then
|
||||
sed -i 's/\(OnlyShowIn=.*\)/\1KDE;TDE;/' "/root/home/$USERNAME/Desktop/ubiquity-gtkui.desktop"
|
||||
fi
|
||||
fi
|
||||
|
||||
log_end_msg
|
@ -0,0 +1,6 @@
|
||||
trinity-livecd (4:3.5.13-1ubuntu0+ax0) precise; urgency=low
|
||||
|
||||
* Initial version
|
||||
|
||||
-- Slávek Banko <slavek.banko@axis.cz> Wed, 12 Dec 2012 19:49:19 +0100
|
||||
|
@ -0,0 +1 @@
|
||||
5
|
@ -0,0 +1,23 @@
|
||||
Source: trinity-livecd
|
||||
Section: tde
|
||||
Priority: optional
|
||||
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||
Standards-Version: 3.8.3
|
||||
Build-Depends: cdbs, debhelper (>= 5)
|
||||
|
||||
Package: trinity-livecd
|
||||
Architecture: all
|
||||
Depends: akregator-trinity, amarok-trinity, ark-trinity, basket-trinity, eyesapplet-trinity, juk-trinity, k3b-trinity, kaffeine-trinity, karm-trinity, kbstate-trinity, kcalc-trinity, kcharselect-trinity, tdeaddons-kfile-plugins-trinity, tdeadmin-kfile-plugins-trinity, tdegames-trinity, tdegraphics-kfile-plugins-trinity, tdemultimedia-kfile-plugins-trinity, tdenetwork-kfile-plugins-trinity, tdepim-kfile-plugins-trinity, tdesdk-kfile-plugins-trinity, kdessh-trinity, tdesudo-trinity, kdewallpapers-trinity, kdf-trinity, kedit-trinity, kfloppy-trinity, kget-trinity, kgpg-trinity, kicker-applets-trinity, kleopatra-trinity, kmailcvt-trinity, kmix-trinity, kmoon-trinity, kompare-trinity, kontact-trinity, konversation-trinity, kopete-trinity, korn-trinity, kpdf-trinity, kpowersave-nohal-trinity | kpowersave-trinity, kppp-trinity, krdc-trinity, kscreensaver-trinity, ksmserver-trinity, ksnapshot-trinity, kteatime-trinity, ktnef-trinity, ktorrent-trinity, kuickshow-trinity, kwalletmanager-trinity, kweather-trinity, kworldclock-trinity, libarts1-akode-trinity, sudo-trinity, superkaramba-trinity, trinity-keyring
|
||||
Recommends:
|
||||
kpresenter-trinity, kspread-trinity, kword-trinity,
|
||||
tde-i18n-cs-trinity, tde-i18n-de-trinity, tde-i18n-es-trinity, tde-i18n-fr-trinity, tde-i18n-it-trinity, tde-i18n-ru-trinity,
|
||||
koffice-i18n-cs-trinity, koffice-i18n-de-trinity, koffice-i18n-es-trinity, koffice-i18n-fr-trinity, koffice-i18n-it-trinity, koffice-i18n-ru-trinity,
|
||||
k3b-i18n-trinity,
|
||||
gtk-qt-engine-trinity, gtk3-tqt-engine-trinity, tdenetworkmanager-trinity, foomatic-db, cups, ubuntu-minimal
|
||||
Suggests: casper-trinity, ubiquity-trinity
|
||||
Description: Essential selection for Trinity LiveCD
|
||||
This package depends on selected packages in the Trinity Desktop Environment
|
||||
.
|
||||
It is safe to remove this package if some of the desktop system packages are
|
||||
not desired.
|
||||
|
@ -0,0 +1,14 @@
|
||||
Copyright 2004, Canonical Ltd.
|
||||
|
||||
This program is free software; you can redistribute it and/or modify it under
|
||||
the terms of the GNU General Public License as published by the Free Software
|
||||
Foundation; either version 2, or (at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful, but WITHOUT ANY
|
||||
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
|
||||
PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License with your
|
||||
system, in /usr/share/common-licenses/GPL-2. If not, write to the Free
|
||||
Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
|
||||
02111-1307, USA.
|
@ -0,0 +1,6 @@
|
||||
#!/usr/bin/make -f
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
|
||||
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||
&& echo xz || echo bzip2)
|
@ -0,0 +1 @@
|
||||
3.0 (native)
|
@ -0,0 +1,3 @@
|
||||
# Use xz instead of gzip
|
||||
compression = "xz"
|
||||
compression-level = 9
|
@ -0,0 +1,6 @@
|
||||
ubiquity-trinity (4:3.5.13-1ubuntu0+ax0) precise; urgency=low
|
||||
|
||||
* Initial version
|
||||
|
||||
-- Slávek Banko <slavek.banko@axis.cz> Mon, 19 Dec 2012 18:54:50 +0100
|
||||
|
@ -0,0 +1 @@
|
||||
7
|
@ -0,0 +1,11 @@
|
||||
Source: ubiquity-trinity
|
||||
Section: admin
|
||||
Priority: optional
|
||||
Maintainer: Timothy Pearson <kb9vqf@pearsoncomputing.net>
|
||||
Build-Depends: cdbs, debhelper (>= 7.0.50~)
|
||||
Standards-Version: 3.8.4
|
||||
|
||||
Package: ubiquity-trinity
|
||||
Architecture: all
|
||||
Depends: ${shlibs:Depends}, ${misc:Depends}, ubiquity-frontend-gtk | ubiquity
|
||||
Description: Ubiquity addon scripts for Trinity
|
@ -0,0 +1,23 @@
|
||||
Author: Slávek Banko <slavek.banko@axis.cz>
|
||||
|
||||
License:
|
||||
|
||||
This package is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This package is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this package; if not, write to the Free Software
|
||||
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||
|
||||
On Debian systems, the complete text of the GNU General
|
||||
Public License can be found in `/usr/share/common-licenses/GPL'.
|
||||
|
||||
The Debian packaging is (C) 2010, Slávek Banko <slavek.banko@axis.cz> and
|
||||
is licensed under the GPL, see above.
|
@ -0,0 +1 @@
|
||||
ubiquity-hooks/* usr/lib/ubiquity/target-config
|
@ -0,0 +1,6 @@
|
||||
#! /usr/bin/make -f
|
||||
|
||||
include /usr/share/cdbs/1/rules/debhelper.mk
|
||||
|
||||
DEB_DH_BUILDDEB_ARGS += -- -Z$(shell dpkg-deb --help | grep -q ":.* xz[,.]" \
|
||||
&& echo xz || echo bzip2)
|
@ -0,0 +1 @@
|
||||
3.0 (native)
|
@ -0,0 +1,3 @@
|
||||
# Use xz instead of gzip
|
||||
compression = "xz"
|
||||
compression-level = 9
|
@ -0,0 +1,52 @@
|
||||
#! /bin/sh
|
||||
set -e
|
||||
|
||||
#-- configure autologin
|
||||
. /usr/share/debconf/confmodule
|
||||
|
||||
export LANG=C # avoid locale errors from perl
|
||||
ROOT=/target
|
||||
chroot=chroot
|
||||
log='log-output -t trinity-livecd'
|
||||
|
||||
db_get passwd/username
|
||||
USER="$RET"
|
||||
db_get passwd/auto-login
|
||||
if [ -n "$USER" ] && [ "$RET" = true ]; then
|
||||
if $chroot $ROOT [ -f /etc/trinity/kdm/kdmrc ]; then
|
||||
# Configure KDM autologin
|
||||
$log $chroot $ROOT sed -i$BACKUP -r \
|
||||
-e "s/^#?AutoLoginEnable=.*\$/AutoLoginEnable=true/" \
|
||||
-e "s/^#?AutoLoginUser=.*\$/AutoLoginUser=$USER/" \
|
||||
-e "s/^#?AutoLoginAgain=.*\$/AutoLoginAgain=true/" \
|
||||
/etc/trinity/kdm/kdmrc
|
||||
fi
|
||||
|
||||
if $chroot $ROOT [ -f /etc/trinity/tdm/tdmrc ]; then
|
||||
# Configure TDM autologin
|
||||
$log $chroot $ROOT sed -i$BACKUP -r \
|
||||
-e "s/^#?AutoLoginEnable=.*\$/AutoLoginEnable=true/" \
|
||||
-e "s/^#?AutoLoginUser=.*\$/AutoLoginUser=$USER/" \
|
||||
-e "s/^#?AutoLoginAgain=.*\$/AutoLoginAgain=true/" \
|
||||
/etc/trinity/tdm/tdmrc
|
||||
fi
|
||||
fi
|
||||
|
||||
#-- cleanup additional packages
|
||||
packages=""
|
||||
if [ -f "$ROOT/var/lib/dpkg/info/casper-trinity.list" ]; then
|
||||
packages="$packages casper-trinity"
|
||||
fi
|
||||
if [ -f "$ROOT/var/lib/dpkg/info/ubiquity-trinity.list" ]; then
|
||||
packages="$packages ubiquity-trinity"
|
||||
fi
|
||||
if [ -n "$packages" ]; then
|
||||
if [ -f "$ROOT/usr/bin/apt-get" ]; then
|
||||
$chroot $ROOT apt-get -y purge $packages
|
||||
$chroot $ROOT apt-get -y --purge autoremove
|
||||
else
|
||||
$chroot $ROOT dpkg -P $packages
|
||||
fi
|
||||
fi
|
||||
|
||||
exit 0
|
Loading…
Reference in new issue