1# This service shall be started with two arguments:
2#  * The PSU inventory DBus object
3#  * The path of the PSU images
4# E.g.
5#  "psu-update@-xyz-openbmc_project-inventory-system-chassis-motherboard-powersupply0\x20-tmp-image-abcdefg.service"
6# expands to
7#  /bin/echo To update /xyz/openbmc_project/inventory/system/chassis/motherboard/powersupply0 /tmp/image/abcdefg
8
9[Unit]
10Description=Update PSU %I
11
12[Service]
13Type=oneshot
14RemainAfterExit=no
15Environment="ARGS=%I"
16ExecStart=/bin/echo To update $ARGS
17ExecStart=/bin/false
18