• 0 Posts
  • 57 Comments
Joined 3 years ago
cake
Cake day: June 18th, 2023

help-circle



  • Oh man, I totally get you. But as others said, it is relatively easy to publish apps on the Play Store.

    And I honestly think that the fight is far from over. I think it only serves Google’s purpose to already admit defeat.

    If not in the US (whom I believe to be highly interested in tracking down “rogue” app authors), then at least other jurisdictions might outlaw this anticompetitive behavior.











  • I have a service that pings the server:

    cat <<EOF | sudo tee /etc/systemd/system/ping-smb.service
    [Unit]
    Description=Blocks until pinging 192.168.1.10 succeeds
    After=network-online.target
    StartLimitIntervalSec=0
    
    [Service]
    Type=oneshot
    ExecStart=ping -c1 192.168.1.10
    Restart=on-failure
    RestartSec=1
    
    [Install]
    WantedBy=multi-user.target
    EOF
    
    sudo systemctl enable ping-smb.service
    

    And then I make the fstab entry depend on it:

    x-systemd.requires=ping-smb.service