aboutsummaryrefslogtreecommitdiff
path: root/scripts/ovh_cloud_instance/arch_host_puppet_configuration_script.sh
blob: 6aae8a796324050e836648283229e6d4d0a96f93 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

git_branch="$1"
environment="$2"

MOUNTPOINT=/mnt

sudo cp /tmp/arch_puppet_configuration_script.sh "$MOUNTPOINT/root/"

sudo arch-chroot "$MOUNTPOINT" /root/arch_puppet_configuration_script.sh "$git_branch" "$environment"

sudo umount "$MOUNTPOINT"