install 333 B

12345678910111213141516
  1. #!/usr/bin/env bash
  2. source $SNAP/helper/functions
  3. set -e
  4. SETTINGS_KEY=$(same_network_key "")
  5. if [ $? -eq 0 ]; then
  6. SETTINGS_KEY=$(cat /dev/urandom | LC_ALL=C tr -dc '0-9A-F' | fold -w 32 | head -n 1)
  7. fi
  8. testnset_config "network.key" "${SETTINGS_KEY}"
  9. test_default_config
  10. snapctl stop --disable "${SNAP_NAME}.${SNAP_NAME}"