opkg-configure.service 521 B

1234567891011121314151617
  1. [Unit]
  2. Description=Opkg first boot configure
  3. DefaultDependencies=no
  4. After=systemd-remount-fs.service systemd-tmpfiles-setup.service tmp.mount
  5. Before=sysinit.target
  6. [Service]
  7. Type=oneshot
  8. EnvironmentFile=-/etc/default/postinst
  9. ExecStart=-/bin/sh -c " if [ $POSTINST_LOGGING = '1' ]; then /usr/bin/opkg configure > $LOGFILE 2>&1; else /usr/bin/opkg configure; fi"
  10. ExecStartPost=/bin/systemctl disable opkg-configure.service
  11. StandardOutput=syslog
  12. RemainAfterExit=No
  13. [Install]
  14. WantedBy=basic.target
  15. WantedBy=sysinit.target