diff options
author | Emil Renner Berthing <esmil@labitat.dk> | 2018-11-22 20:11:11 +0100 |
---|---|---|
committer | Emil Renner Berthing <esmil@labitat.dk> | 2018-11-22 20:11:11 +0100 |
commit | 5211ab25b6ed41a5aaec8e2ef2493099a3f69ab0 (patch) | |
tree | d47ceb666c5e2b0c3c453866e7449cd06dbef297 /roles | |
parent | 8f504e0543febe808072b4a5d3f1294302ac88fc (diff) | |
download | labitat-ansible-5211ab25b6ed41a5aaec8e2ef2493099a3f69ab0.tar.gz labitat-ansible-5211ab25b6ed41a5aaec8e2ef2493099a3f69ab0.tar.xz labitat-ansible-5211ab25b6ed41a5aaec8e2ef2493099a3f69ab0.zip |
space_server: bootstrap: chmod subvolume
Diffstat (limited to 'roles')
-rwxr-xr-x | roles/space_server/bootstrap.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/roles/space_server/bootstrap.sh b/roles/space_server/bootstrap.sh index 98a62e5..dae4460 100755 --- a/roles/space_server/bootstrap.sh +++ b/roles/space_server/bootstrap.sh @@ -49,11 +49,12 @@ if [[ -e "$dest" ]]; then fi btrfs subvolume create "$dest" +chmod 0755 "$dest" dnf \ --assumeyes \ - --installroot="$dest" \ --setopt=install_weak_deps=False \ + --installroot="$dest" \ --releasever=$release \ --disablerepo='*' \ --enablerepo=fedora \ |