This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- hosts: localhost | |
become: true | |
tasks: | |
# 必要なパッケージのインストール ---------------------------------------- | |
- name: 必要なパッケージをインストール (ffmpeg, git, imagemagick, rename, python3-pip) | |
apt: | |
name: | |
- ffmpeg | |
- git |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# InstallSoftware.ps1 | |
# エラーが発生したらスクリプトを停止する | |
$ErrorActionPreference = "Stop" | |
# インストール対象のパッケージリスト(更新があればこの部分だけを書き換えます) | |
$packages = @( | |
"Google.Chrome", | |
"Mozilla.Firefox.ja", | |
"Adobe.Acrobat.Reader.64-bit", |