created: 2022-10-14T07:55:30.581Z
ansible でフォーマット済みのパーティションをマウントする
前回までのあらすじ。
必要なステップはこんな感じになった。
- name: mkdir /mnt/myhdd
file:
path: /mnt/myhdd
state: directory
- name: mount /mnt/myhdd
ansible.posix.mount:
src: "UUID=xxxxxxxxx..."
path: /mnt/myhdd
fstype: ext4
state: mounted
- name: mkdir /mnt/myhdd/share
file:
path: /mnt/myhdd/share
state: directory
owner: pi
group: pi
覚書
ほとんどハマらずすんなりできた。
ansible.posix.mount
ではfstype
の指定は必須/mnt/myhdd/share
の権限/グループを編集しないと samba でつないでる先でPermission Denied
になった