Sha256: 8d206f362e6899b13b1fcae4d0d4044b1160fb2cf3f33b5f08e55c88b9a26041

Contents?: true

Size: 349 Bytes

Versions: 16

Compression:

Stored size: 349 Bytes

Contents

#!/bin/bash

# Requires
#   pacman.sh

# Chroot into the new system and set up SSH access
arch-chroot /mnt <<ENDCHROOT
pacman -S --noconfirm openssh

# Make sure SSH is allowed
echo "sshd:	ALL" > /etc/hosts.allow

# And everything else isn't
echo "ALL:	ALL" > /etc/hosts.deny

# Make sure sshd starts on boot
systemctl enable sshd.service
ENDCHROOT

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
veewee-0.5.0.alpha4 templates/archlinux-x86_64/ssh.sh
veewee-0.5.0.alpha3 templates/archlinux-x86_64/ssh.sh
veewee-0.5.0.alpha2 templates/archlinux-x86_64/ssh.sh
veewee-0.5.0.alpha1 templates/archlinux-x86_64/ssh.sh
veewee-0.4.5.1 templates/archlinux-x86_64/ssh.sh
veewee-0.4.5 templates/archlinux-x86_64/ssh.sh
veewee-0.4.5.pre1 templates/archlinux-x86_64/ssh.sh
veewee-0.4.4 templates/archlinux-x86_64/ssh.sh
veewee-0.4.3 templates/archlinux-x86_64/ssh.sh
veewee-0.4.2 templates/archlinux-x86_64/ssh.sh
veewee-0.4.1 templates/archlinux-x86_64/ssh.sh
veewee-0.4.0 templates/archlinux-x86_64/ssh.sh
veewee-0.3.12 templates/archlinux-x86_64/ssh.sh
veewee-0.3.11 templates/archlinux-x86_64/ssh.sh
veewee-0.3.10 templates/archlinux-x86_64/ssh.sh
veewee-0.3.9 templates/archlinux-x86_64/ssh.sh