diff --git a/meta/base.yaml b/meta/base.yaml index 808eb2b..a1265d1 100644 --- a/meta/base.yaml +++ b/meta/base.yaml @@ -15,3 +15,9 @@ '~/.config' ] +- ifanylinux: + - shell: + - [ + echo "Archlinux test", "Using ifplatform module." + ] + diff --git a/meta/tasks/packages_yay.yaml b/meta/tasks/packages.yaml similarity index 100% rename from meta/tasks/packages_yay.yaml rename to meta/tasks/packages.yaml diff --git a/meta/tasks/test.yaml b/meta/tasks/test.yaml new file mode 100644 index 0000000..f4a2031 --- /dev/null +++ b/meta/tasks/test.yaml @@ -0,0 +1,27 @@ +- shell: + - + command: echo "This is a test file. If you are reading this, it is that everything is ok." > /tmp/dotbot_test_file + stdin: false + stdout: false + description: Create a test file. + quiet: true + - + command: cat /tmp/dotbot_test_file + stdin: false + stdout: true + description: Read the test file. + quiet: true + - + command: rm /tmp/dotbot_test_file + stdin: false + stdout: false + description: Delete the test file. + quiet: true + +- ifanylinux: + - shell: + - + command: echo "Test du plugin ifplatform." + stdout: true + description: Test ifplatform + quiet: false