summaryrefslogtreecommitdiff
path: root/scripts/install/install-postinst-new
diff options
context:
space:
mode:
authorDaniil Baturin <daniil@baturin.org>2018-06-24 12:50:17 +0200
committerDaniil Baturin <daniil@baturin.org>2018-06-24 12:50:17 +0200
commitbacecf80ea16d3cd30dc7c98c98af013b2adc258 (patch)
tree2b1d6f48708ace28ae4f6c9893ee50f6f390c6b7 /scripts/install/install-postinst-new
parent0d8e75e2e808ccf366a1527647a6353c09d92237 (diff)
parent0f19dc57ed6588c083eee8aa9aee09b92b441b08 (diff)
downloadvyatta-cfg-system-lithium.tar.gz
vyatta-cfg-system-lithium.zip
Merge branch 'current' into lithiumlithium
Conflicts: debian/changelog scripts/snmp/vyatta-snmp-v3.pl scripts/snmp/vyatta-snmp.pl templates/interfaces/tunnel/node.def templates/system/sysctl/custom/node.def
Diffstat (limited to 'scripts/install/install-postinst-new')
-rwxr-xr-xscripts/install/install-postinst-new30
1 files changed, 2 insertions, 28 deletions
diff --git a/scripts/install/install-postinst-new b/scripts/install/install-postinst-new
index 11cf788e..2457cdd3 100755
--- a/scripts/install/install-postinst-new
+++ b/scripts/install/install-postinst-new
@@ -51,15 +51,6 @@ copy_config () {
config=${VYATTA_NEW_CFG_DIR}/config.boot
fi
- # Second candidate: The config file on floppy, if one exists.
- if [ -f "${FD_CFG_DIR}/config.boot" ]; then
- if [ -z "$config" ]; then
- config="${FD_CFG_DIR}/config.boot"
- else
- config="$config ${FD_CFG_DIR}/config.boot"
- fi
- fi
-
# Third candidate: The default config file
DEF_CONF=$vyatta_sysconfdir/config.boot.default
if [ -f $DEF_CONF ]; then
@@ -175,7 +166,7 @@ setup_xen_extras () {
echo "" >> $grubfile
echo "title vyatta-virt" >> $grubfile
echo "root (hd0,0)" >> $grubfile
- echo "kernel $xen_grub_boot_path/vmlinuz root=/dev/$rootdev boot=live vyatta-union=$xen_grub_boot_path console=hvc0" >> $grubfile
+ echo "kernel $xen_grub_boot_path/vmlinuz root=/dev/$rootdev boot=live vyos-union=$xen_grub_boot_path console=hvc0" >> $grubfile
echo "initrd $xen_grub_boot_path/initrd.img" >> $grubfile
# Add symlink pointing to default image
@@ -259,27 +250,10 @@ if [ -f "$MDADM_CONFIG_FILE" ]; then
fi
fi
-if [ "$INSTALL_TYPE" == 'union' ]; then
- # make /var/run tmpfs
- pi_fstab=$INST_ROOT/etc/fstab
- if ! grep -q 'tmpfs /var/run ' $pi_fstab >&/dev/null; then
- # replace the fstab. the default one has header that will cause
- # it to be wiped out on live boot.
- echo 'tmpfs /var/run tmpfs nosuid,nodev 0 0' >$pi_fstab
- fi
-else
- # not passing the write root to postinst (only needed for union)
+if [ "$INSTALL_TYPE" != 'union' ]; then
WRITE_ROOT=''
fi
-# postinst hook
-if [ -e /opt/vyatta/etc/install-system/postinst ]; then
- echo "running post-install script"
- output=$(/opt/vyatta/etc/install-system/postinst \
- "$INST_ROOT" "$WRITE_ROOT" 2>&1)
- lecho "$output"
-fi
-
becho "Done!"
exit 0